Writing a large number

How would I write out a large number like 6.527875e+09 (which is the result of a formula). And write out as in not a simplified number like it is. Like all the digits.

Debug.Log (myAwesomeReallyBigNumber.ToString("0"));

–Eric

Oh, I didn’t even think of that. Thanks!

Here’s the standard numeric format strings:

As well as the custom strings to build your own. Which is what the “0” is doing.