I have a double number:
element.MaxAllowableConcLimitPpm = 0.077724795640326971;
I need to display it as
7.7725e-2
when I try to use it:
element.MaxAllowableConcLimitPpm.ToString("e4", CultureInfo.InvariantCulture)
it returns
7.7725e-002
How to say that mantissa should have one symbol instead of 3 ?
Format like this:
.ToString("0.0000e0")
returns
5.0000e2
instead of
5.0000e+2