我正在开发一个从 Android 应用程序接收数据的 WCF JSON Web 服务。
某些数据可能为空。在 Android 上我使用java.lang.Long,可能是null
.
在 C#side 上,我正在使用long
that could't be null
.
java.lang.Long
C#中有类型吗?
我正在开发一个从 Android 应用程序接收数据的 WCF JSON Web 服务。
某些数据可能为空。在 Android 上我使用java.lang.Long,可能是null
.
在 C#side 上,我正在使用long
that could't be null
.
java.lang.Long
C#中有类型吗?
听起来你想要一个Nullable<long>
or long?
。
long? myLongVar = null;
if (myLongVar == null) // or !myLongVar.HasValue, if you prefer
{
myLongVar = 5L;
long noLongerNullable = myLongVar.Value;
}
Nullable
在 C# 中使用类型
Long? x;//by default x is now null..you can now assign null to it
你应该使用long?
akaNullable<long>