Пример #1
0
 public static TypeConstraint Not(this Assembly that)
 {
     return(TypeConstraint.Not(that));
 }
Пример #2
0
 public Ce Ignoring(TypeConstraint toIgnore)
 {
     Throw.IfArgumentNull(toIgnore, "toIgnore");
     return(FilterBy(toIgnore.Not()));
 }
Пример #3
0
 public static TypeConstraint Not(this Type that)
 {
     return(TypeConstraint.Not(that));
 }