示例#1
0
 public static bool IsNullOrEmpty([CanBeNull] SoftString value) => string.IsNullOrEmpty(value?._value);
示例#2
0
 public static bool IsNullOrWhiteSpace([CanBeNull] SoftString value) => string.IsNullOrWhiteSpace(value?._value);
示例#3
0
 public static bool IsNullOrEmpty(this SoftString value)
 {
     return(SoftString.IsNullOrEmpty(value));
 }