double
is a type that represents 64-bit IEEE 754 floating-point number in Java
double
is a type that represents 64-bit double-precision number in IEEE 754 format in C#.
Both languages follow the same specification. So why there is difference in following code? I checked Mono as well.
Double.MIN_VALUE == (Double.MIN_VALUE + 1.0); // false
Console.WriteLine(Double.MinValue == (Double.MinValue + 1.0)); // true