What's the proper way to convert from a scientific notation string such as "1.234567E-06" to a floating point variable using C#?
Double.Parse("1.234567E-06", System.Globalization.NumberStyles.Float);