Ejemplo n.º 1
0
 public static List <T> Intersection <T>(this IEnumerable <T> A, IEnumerable <T> B)
 {
     return(ListUtilityGeneric <T> .Intersection(A, B));
 }