Are System.Double operators overloaded for epsilon?
Are System.Double operators overloaded to perform epsilon comparisons, or do these comparisons have to be performed by the programmer. In other words, if I have two doubles, A and B, and I test “A > B”, does C# do a strict mathematical comparison, or does it do a “A – B > Double.Epsilon” comparison?