StringExtensions.IsEmpty(String) 方法

定义

检查字符串值是 null 还是空。

public static bool IsEmpty (this string value);
static member IsEmpty : string -> bool
<Extension()>
Public Function IsEmpty (value As String) As Boolean

参数

value
String

要测试的字符串值。

返回

如果 value 为 null 或为零长度字符串 (“”) ,则为 true;否则为 false。

适用于