"Ryan Liu" <ad********@online.sh.cn> wrote in message
news:Of**************@TK2MSFTNGP04.phx.gbl...
In C#, for a large float (9 digitals), how can I disable Scientific notation. When it auto convert to Scientific notation, I lost accuracy.
You can't. A float has a certain number of digits accuracy so larger numbers
will lose some accuracy (or small numbers with lots of decimals). You could
use double or long. Note that double is not guarenteed to preserve your
accuracy either but will be better.