コード例 #1
0
ファイル: ServicesFilters.cs プロジェクト: dengliyan/XUtils
 public static IServicesImplementationCollection Except(this IServicesImplementationCollection @this, IEnumerable <Type> except)
 {
     return(new ServicesImplementationCollection
     {
         Actual = @this.Except(except)
     });
 }
コード例 #2
0
ファイル: ServicesFilters.cs プロジェクト: dengliyan/XUtils
 public static IServicesImplementationCollection Except(this IServicesImplementationCollection @this, params Type[] except)
 {
     return(@this.Except((IEnumerable <Type>)except));
 }