I am trying to parse string "0.0000" with double.TryParse() but I have no idea why would it return false in this particular example. When I pass integer-like strings e.g. "5" it parses correctly to value of 5 .
Any ideas why it is happening ?
|
it takes the localization settings at runtime into account... perhaps you are running this on a system where In your specific case I assume you want a fixed culture regardless of the system you are running on with
OR
Some MSDN reference links:
|
|||
|
|
|
|
|||||||
|
|
Almost certainly the problem is that If you know that the number will be always formatted with dot as the decimal separator, use this code that utilizes the other overload of
|
|||
|
|
|
It will return When parsing strings representation you need to be aware in what culture they are represented otherwise you'll get unexpected behavior. In this case you're getting
This is because in the If the input you're parsing comes from the user then always parse it using the culture the user is associated. Getting the culture the user is associated is something dependent on the context, for example in a Windows Forms application you would use |
||||
|
|
|
To change the culture to something that has "." as decimal separator use:
|
|||||
|
From the MSDN page for this method. http://msdn.microsoft.com/en-us/library/994c0zb1.aspx Zero goes in, zero comes out. |
||||
|
|
|
It works for me:
writes |
|||
|
|
.is not the decimal point but,instead ? – Yahia Dec 11 '11 at 11:28IFormatProviderso the culture can be specified). – Richard Dec 11 '11 at 11:30TryParseuses the current culture by default. (An idiotic decision IMO, but it's too late now to change it) – CodesInChaos Dec 11 '11 at 11:31