J
John Bowman
Hello,
I've got a string retrieved from an XML data file, that in reality
represents a double. So, an example in English would be the string
"1.23456789", but in say German or French it would be "1,23456789" (but the
numbers are in reality very large). I need to convert this into a double to
pass on to a 3rd party trend chart object that requires a double. My
question is that if I use the Convert.ToDouble() method, does it handle the
culture correctly? Does it return the value 1.23456789 in English but
1,23456789 in German/French correctly?
TIA,
I've got a string retrieved from an XML data file, that in reality
represents a double. So, an example in English would be the string
"1.23456789", but in say German or French it would be "1,23456789" (but the
numbers are in reality very large). I need to convert this into a double to
pass on to a 3rd party trend chart object that requires a double. My
question is that if I use the Convert.ToDouble() method, does it handle the
culture correctly? Does it return the value 1.23456789 in English but
1,23456789 in German/French correctly?
TIA,