I am trying to convert 1200.00 to decimal, but Decimal.Parse() removes .00. I\'ve tried some different methods, but it al
1200.00
decimal
Decimal.Parse()
.00
The value is the same even though the printed representation is not what you expect:
decimal d = (decimal )1200.00; Console.WriteLine(Decimal.Parse("1200") == d); //True