|
When the Math.PI.ToString("G3") method is called, it returns a value of 3.142E+000. When the same is tried with G2, 3.14E+000 is returned. When the 12345678.9.ToString("G3") method is called, it returns a value of 1.23E+07. When the same is tried with G2, 1.2E+07 is returned. When the 55.ToString("G3") method is called, it returns a value of 55. When the same is tried with G2, 55 is returned. What is General actually doing to the number?
|