コード例 #1
0
ファイル: SoftString.cs プロジェクト: nttrdb/Reusable
 public static bool IsNullOrEmpty([CanBeNull] SoftString value) => string.IsNullOrEmpty(value?._value);
コード例 #2
0
ファイル: SoftString.cs プロジェクト: nttrdb/Reusable
 public static bool IsNullOrWhiteSpace([CanBeNull] SoftString value) => string.IsNullOrWhiteSpace(value?._value);
コード例 #3
0
 public static bool IsNullOrEmpty(this SoftString value)
 {
     return(SoftString.IsNullOrEmpty(value));
 }