I have this string: "7.0000000000000007E-2" (data.InnerText). I use the following code but this gave me the error: "Input string was not in a correct format.".
decimal value = Decimal.Parse(data.InnerText, CultureInfo.InvariantCulture);
I only need the number rounded on 2 decimals.