你能在C#2.0中将Integer设置为null吗?

时间:2010-07-21 04:30:30

标签: c# c#-2.0

你能在C#2.0中将Integer设置为null吗?

1 个答案:

答案 0 :(得分:7)

我假设你正在使用c#2.0& .net framework 2.0起。

使用可空类型。 例如int? myValue = null;
要么 Nullable<int> myOtherValue = null;

编辑:查看示例here