Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Convert.ToDouble Method (String) converts the specified String representation of a number to an equivalent double-precision floating point number.

I have this line of code: double d = Convert.ToDouble("0.3");

and it gives me 3.0 instead of 0.3. For numbers greater than 1 it works as expected. Why?

share|improve this question
It works OK with CulturalInfo option: double d = Convert.ToDouble("0.3", CultureInfo.InvariantCulture); – Vladimir Radojicic Jul 17 '11 at 19:13
I think you mean Convert.ToDouble("0,3") ;-) – David Heffernan Jul 17 '11 at 19:13
It was like that but I wanted point, so I changed my cultural settings to the dot, and everything seemed to work fine, until I tried numbers less than zero. – Vladimir Radojicic Jul 17 '11 at 19:17

3 Answers

up vote 6 down vote accepted

Most likely a locale problem. There are cultures where . is not the decimal separator.

Try double.Parse("0.3",CultureInfo.InvariantCulture)

share|improve this answer

Try this:

NumberFormatInfo provider = new NumberFormatInfo();
provider.NumberDecimalSeparator = ".";
double d = Convert.ToDouble("0.3", provider);
share|improve this answer

What are the current Culture settings? It's probably because in the culture settings you are using the '.' is not the decimal delimiter!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.