ONY*_*NYX 1 c# c#-2.0
你能在C#2.0中将Integer设置为null吗?
sha*_*esh 7
我假设你正在使用c#2.0和.net framework 2.0.
使用可空类型.例如int? myValue = null; 要么 Nullable<int> myOtherValue = null;
int? myValue = null
Nullable<int> myOtherValue = null;
编辑:在这里查看示例.
归档时间:
15 年,7 月 前
查看次数:
3786 次
最近记录: