I am trying to convert a double to a string, but on any small enough numbers it is converting the double to an E notation first before converting that.

e.g. 0.000067492338645565634 is getting changed to 6.74923386455656E-05 when I convert to a string. I want it without the notation. I just need the leading digit and 6 precision digits, so I am just hacking everything after the first 8 characters off after conversion anyways. Is there an easy way to do this, or do I have to do something ugly like do a Split on an E and add zeroes for whatever number I have after the E?