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