I have a numerical value in a string: 12.50000
When i want to convert that string to decimal using Convert.ToDecimal() it deletes the period and it becomes 1250000.
Is there a way to stop this? Because the final value is supposed to be 12.5, not 1250000.