I have two variables of type int? (or Nullable if you will). I wanted to do a greater-than-or-equal (>=) comparison on the two variables but as it turns out, this
>= operates on a numeric value; which null is not.
>=
You could overload the >= operator to provide what you desire on a specific type.