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