using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
string[] arr = new string[]
{
"3.14",
"1.00",
"1,000.00",
"0.3",
"0.301",
"0.39",
"00.001",
"-0.01",
"-9.13",
"0.0",
"0",
" 0",
"1000000000"
};
foreach (string s in arr)
{
float f = float.Parse(s);
Console.WriteLine(f);
}
}
}
}
/*
run:
3.14
1
1000
0.3
0.301
0.39
0.001
-0.01
-9.13
0
0
0
1E+09
*/