I have a few places where I need to compare 2 (nullable) values, to see if they\'re the same.
I think there should be something in the framework to support this, but can
(x?? 0).Equals(y)
will handle null as well as equals.