G
Guest
In C#, what is the difference between declaring an int like this:
int i = 1;
versus
int? i = 1;
both seem to work the same way in VS.NET 2005.
int i = 1;
versus
int? i = 1;
both seem to work the same way in VS.NET 2005.