int?

  • Thread starter Thread starter Guest
  • Start date Start date
bobby said:
what's the difference between int? and int

int? is the short syntax for Nullable<int>.

Nullable is a structure that allows a value type to handle a null value.
 
Back
Top