What's the proper way to convert from a scientific notation string such as "1.234567E-06" to a floating point variable using C#?
|
feedback
|
| |||
|
feedback
|
|
Also consider using
This will ensure that | |||||
feedback
|
|
Can I also add that you should use Double.TryParse. Convert.ToDouble will throw an exception for scientific notation, since you can't specify the number style | |||
|
feedback
|