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
Yes. That's why Microsoft added that. People were creating their own Nullable class so they included this pattern in .NET.