How can I test to see if an object is null.
Everything I've found says I should use:
Code:
if (myObject == null)
Unfortunately I've overloaded the == operator so this won't work. Is there another way to do this or something I could do to my overloaded operator to handle this situation?