ToString formatting

Apparently, double.ToString(“E”) does not work. Will this be available in the future ?

It’s something we can consider in the future but we don’t currently have concrete plans for it at the moment.

It turns out that ToString on a double will in fact return a value in exponential format for values less than E-4. I used “G3” to get what I need.

1 Like