Beispiel #1
0
 public static IServicesImplementationCollection Except(this IServicesImplementationCollection @this, IEnumerable <Type> except)
 {
     return(new ServicesImplementationCollection
     {
         Actual = @this.Except(except)
     });
 }
Beispiel #2
0
 public static IServicesImplementationCollection Except(this IServicesImplementationCollection @this, params Type[] except)
 {
     return(@this.Except((IEnumerable <Type>)except));
 }