Friday, 16 September 2016

c# - How do I parse a string with a decimal point to a double?

I want to parse a string like "3.5" to a double. However,




double.Parse("3.5") 


yields 35 and



double.Parse("3.5", System.Globalization.NumberStyles.AllowDecimalPoint) 


throws a FormatException.




Now my computer's locale is set to German, wherein a comma is used as decimal separator. It might have to do something with that and double.Parse() expecting "3,5" as input, but I'm not sure.



How can I parse a string containing a decimal number that may or may not be formatted as specified in my current locale?

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...