In .NET 1.1 we cannot set value null to integer or decimal data type.But in .NET 2.0 we can do that.
Try this:
VBDim i As Nullable (Of Integer) = Nothing
C#Nullable<int> i = null;
bedanya sama int? i; apa?
sama saja.
http://blogs.netindonesia.net/norman/articles/7731.aspx
http://msdn2.microsoft.com/en-us/library/2cf62fcy.aspx
[datatype]? i is shorthanded notation from Nullable<[datatype]> i = null;
nullable datatype is part of generics in framework 2.0