I\'d like to have an integer variable which can be set to null and don\'t want to have to use the int? myVariable syntax. I tried using int and
int? myVariable
int
Nullable types are instances of the System.Nullable(T) struct. Therefore int, int?, Nullable are all value types, not reference types