コード例 #1
0
 public static PropertyMustBe <T, string> MustBeNullOrWhiteSpace <T>(this PropertyMustBe <T, string> actual)
 {
     return(actual.Is(string.IsNullOrWhiteSpace));
 }
コード例 #2
0
 public static PropertyMustBe <T, string> MustBeNullOrEmpty <T>(this PropertyMustBe <T, string> actual)
 {
     return(actual.Is(string.IsNullOrEmpty));
 }