Exemplo n.º 1
0
 public static PropertyMustBe <T, string> MustBeNullOrWhiteSpace <T>(this PropertyMustBe <T, string> actual)
 {
     return(actual.Is(string.IsNullOrWhiteSpace));
 }
Exemplo n.º 2
0
 public static PropertyMustBe <T, string> MustBeNullOrEmpty <T>(this PropertyMustBe <T, string> actual)
 {
     return(actual.Is(string.IsNullOrEmpty));
 }