I'm trying to compare a double value to see if it is equal to zero. The following will work:
Assert.IsTrue(0d==0);
However this will fail:
Assert.IsTrue(Equals(0d,0));
I think the second argument (0) is being treated as an integer. However, I don't understand why Equals(0d, 0) evaluates as false whereas 0d==0 is true. It can't be rounding because both values are directly input as zeros.
decimaltoint– Henk Holterman Aug 18 '11 at 22:27