M Mark Rae [MVP] Oct 3, 2007 #2 what's the difference between int? and int Click to expand... int? is nullable, int isn't... http://msdn2.microsoft.com/en-us/library/2cf62fcy(VS.80).aspx
what's the difference between int? and int Click to expand... int? is nullable, int isn't... http://msdn2.microsoft.com/en-us/library/2cf62fcy(VS.80).aspx
G Guest Oct 3, 2007 #3 bobby said: what's the difference between int? and int Click to expand... int? is the short syntax for Nullable<int>. Nullable is a structure that allows a value type to handle a null value.
bobby said: what's the difference between int? and int Click to expand... int? is the short syntax for Nullable<int>. Nullable is a structure that allows a value type to handle a null value.