How to convert this scientific notation to decimal?
You have to add NumberStyles.AllowDecimalPoint too: Decimal.Parse(“2.09550901805872E-05″, NumberStyles.AllowExponent | NumberStyles.AllowDecimalPoint); MSDN is clear about that: Indicates that the numeric string can be in exponential notation. The AllowExponent flag allows the parsed string to contain an exponent that begins with the “E” or “e” character and that is followed by an optional positive or negative sign … Read more