I want to convert a very Small number to Decimal,
Lets Say
String secondsStr = 0;
Decimal secondsValue;
Boolean success = Decimal.TryParse(secondsStr, out secondsValue);
But the problem is I have the string representation of it, 3.24E-08
String secondsStr = 3.24E-08;
Decimal secondsValue;
Boolean success = Decimal.TryParse(secondsStr, out secondsValue);
It always return success as false.
How can I parse that to get 0.00000003244657 ?