I just learned the hard way that IntPtr.Zero cannot be compared to default(IntPtr). Can someone tell me why?
IntPtr.Zero == new IntPtr(0) -> "could not evaluate expression"
IntPtr.Zero == default(IntPtr) --> "could not evaluate expression"
IntPtr.Zero == (IntPtr)0 -> "could not evaluate expression"
IntPtr.Zero.Equals(IntPtr.Zero) --> "Enum value was out of legal range" exception
IntPtr.Zero.Equals(default(IntPtr)) --> "Enum value was out of legal range" exception
IntPtr.Zero == IntPtr.Zero --> true
new IntPtr(0) == new IntPtr(0) --> true
IntPtrin some way. If you click on the different ones and press F12, what happens? – Gabe Jun 6 '12 at 14:08IntPtr.Equalsis actually comparing what's being pointed at, rather than the pointer's value itself. That may have something to do with it.... – Carsen Daniel Yates Jun 11 '12 at 0:13