Nullable<int> vs. int? - Is there any difference?

Viewed 38670

Apparently Nullable<int> and int? are equivalent in value. Are there any reasons to choose one over the other?

Nullable<int> a = null;
int? b = null;
a == b; // this is true
5 Answers
Related