标签: c# c#-2.0
你能在C#2.0中将Integer设置为null吗?
答案 0 :(得分:7)
我假设你正在使用c#2.0& .net framework 2.0起。
使用可空类型。 例如int? myValue = null; 要么 Nullable<int> myOtherValue = null;
int? myValue = null
Nullable<int> myOtherValue = null;
编辑:查看示例here。