up vote 5 down vote favorite
2
share [g+] share [fb]

I'm trying to convert a string to a double value but it's not returning me what I expect...

double dbl;
Double.TryParse("20.0", out dbl);

That piece of code is returning 200.0 (instead of 20.0) as a double value. Any idea why?

link|improve this question
feedback

1 Answer

up vote 20 down vote accepted

You should pass InvariantCulture to the method.

The reason behind this is that your regional settings probably set . as separator character and not decimal point.

double.TryParse("20.0", NumberStyles.Any, 
                CultureInfo.InvariantCulture, out x);
link|improve this answer
Thanks, that solved it. :) – triton Apr 5 '09 at 18:31
this is very tricky – Ahmed Said Apr 5 '09 at 19:46
feedback

Your Answer

 
or
required, but never shown

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