I am 90% sure I saw this answer on stackoverflow before, in fact I had never seen the \"int?\" syntax before seeing it here, but no matter how I search I can\'t find the pre
int? is shorthand for Nullable<int>.
Nullable<int>
This may be the post you were looking for.