If you are curious, this is what Double.IsNaN
looks like:
public static bool IsNaN(double d)
{
return (d != d);
}
Funky, huh?
If you are curious, this is what Double.IsNaN
looks like:
public static bool IsNaN(double d)
{
return (d != d);
}
Funky, huh?