Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiplying a double value by 100.0 introduces rounding errors?

Tags:

c#

.net

math

This is what I am doing, which works 99.999% of the time:

((int)(customerBatch.Amount * 100.0)).ToString()

The Amount value is a double. I am trying to write the value out in pennies to a text file for transport to a server for processing. The Amount is never more than 2 digits of precision.

If you use 580.55 for the Amount, this line of code returns 58054 as the string value.

This code runs on a web server in 64-bit.

Any ideas?

like image 887
Sophtware Avatar asked Jul 08 '10 15:07

Sophtware


1 Answers

You should really use decimal for money calculations.

((int)(580.55m * 100.0m)).ToString().Dump();
like image 194
Jesper Palm Avatar answered Jan 04 '23 11:01

Jesper Palm