I want to parse "7.7E-07" string into double so it looks like: "0.00000077" But none of the methods that I've found on the internet work. This is my code:
double someNumber = double.Parse("7.7E-07", NumberStyles.Float, CultureInfo.InvariantCulture );
and it still produce '7.7E-07'