when i do this:
float x = float.MaxValue;
I have the result: 3.40282347E+38
What is E+38? how can I represent the maximum number withou
Try the following code:
float f = float.MaxValue; Console.WriteLine("Origianl Value: " + f); Console.WriteLine("With Zeros:" + f.ToString("0"));
Value
Origianl Value: 3.402823E+38 With Zeros:340282300000000000000000000000000000000