-1
I am reading in an excel file, but the values of them are coming in this format.
"-3,6379788070917E-12"
Code for conversion from string to decimal.
decimal.Parse(linha[5]);
When I do the error decimal conversion, saying the format is invalid. How can I turn this data into number?
Can you guarantee that this number is always valid? Where does it come from?
– Maniero