Пример #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));
 }