I'm trying to convert and exponential number 1.11111117E+9 which is actually a 10 digit number '1111111111'. When I'm trying to convert this exponential number using decimal.TryParse method it is making last 3 digits as zero and giving the number as '111111000'. This is happening with any 10 digit number.
decimal amount;
decimal.TryParse("1.11111117E+9", NumberStyles.Any, null, out amount);
This is weird but I'm not able to figure out what's the issue here, can anybody tell me what's wrong in this?
Edit: Sorry for the misleading question. As Henrik mentioned in his answer is exactly what I'm facing.
float f = 1111111111;
string s = f.ToString();
decimal amount;
decimal.TryParse(s, NumberStyles.Any, null, out amount);
This will always return 1111111000? How do I address this issue to get the correct value? Change it to Double or Decimal from float datatype is the solution or anything else?