What is the best way to parse a float in CSharp? I know about TryParse, but what I\'m particularly wondering about is dots, commas etc.
I\'m having problems with my
I agree with leppie's reply; to put that in terms of code:
string s = "123,456.789"; float f = float.Parse(s, CultureInfo.InvariantCulture);