Double.IsNaN test 100 times faster?
It claims to be 100 times faster than System.Double.IsNaN Yes, that used to be true. You are missing the time-machine to know when this decision was made. Double.IsNaN() didn’t used to look like that. From the SSCLI10 source code: public static bool IsNaN(double d) { // Comparisions of a NaN with another number is always … Read more