Functions.EmptyT 方法 (T) | |
确定表达式的结果是否为空。
命名空间:
XSharp.RT
程序集:
XSharp.RT (在 XSharp.RT.dll 中) 版本:2.22 GA
语法 FUNCTION Empty<T>(
uValue AS T
)
WHERE T : STRUCT, NEW()
AS LOGIC
public static bool Empty<T>(
T uValue
)
where T : struct, new()
查看代码参数
- uValue
- 类型:T
要检查"空性"的值
类型参数
- T
返回值
类型:
Boolean
如果表达式结果为空值,则返回 TRUE;否则返回 FALSE。
备注 For T values the 'emptyness' is determined by calling the Equals() operator and comparing to a DEFAULT(T)
参见