Hi
I have a number like so: 4.47778E+11
Can anyone give me a way of converting that into its number representation easily in c#?
Thanks
|
|
|
|
|
|
|
or
or for internationalization double.Parse("4.47778e+11", System.Globalization.NumberStyles.Float, System.Globalization.CultureInfo.InvariantCulture); |
||||
|
|
|
Try this MSDN thread. It's called scientific notation by the way, and a quick google normally solves simple issues. That's assuming you mean parsing from a string to a float, your question & title are conflicting |
||
|
|
|
Use
But you still lose precision, floats are only precise to 7 digits, so you're better off using just the Convert.ToDouble() (precise to 15 or so digits), so you won't lose any digits in your example. |
||
|
|
|
|
Use Convert:
|
||
|
|