Tagged Questions

13
votes
2answers
11k views

Convert from scientific notation string to float in C#

What's the proper way to convert from a scientific notation string such as "1.234567E-06" to a floating point variable using C#?
4
votes
1answer
177 views

Format C# Double to Scientfic Notation in powers with multiples of three

I'm trying to format some large numbers in scientific format, but I need the power in multiples of three. Is there a recommended way to do this? I have a range of numbers in a table and instead of ...
2
votes
1answer
293 views

Scientific Notation - bug in .NET?

Yeah I know it's hard to believe - bug in .NET? But run this code in the command line app: decimal x; x = decimal.Parse("3.E-2", NumberStyles.Float); Console.WriteLine(x); x = ...