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 cannot accept null but if developer are using int? then you store null in int
like
int i = null; // not accept
int? i = null; // its working
mostly use for pagination in MVC Pagelist