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
You can use the static Equals method on System.Object:
var equal = object.Equals(objA, objB);