When I try to convert a string to float:
Console.WriteLine(float.Parse(\"6.59\"));
it throws an exception:
Unhandled Exc
There could be problem with Locale/Culture. You need to set , instead of . for the decimal separator.
,
.