Ejemplo n.º 1
0
 public static PropertyMustBe <T, string> MustNotBeNullOrWhiteSpace <T>(this PropertyMustBe <T, string> actual)
 {
     return(actual.IsNot(string.IsNullOrWhiteSpace));
 }
Ejemplo n.º 2
0
 public static PropertyMustBe <T, string> MustNotBeNullOrEmpty <T>(this PropertyMustBe <T, string> actual)
 {
     return(actual.IsNot(string.IsNullOrEmpty));
 }