Ejemplo n.º 1
0
 public static IAsyncEnumerable <TSource> Except <TSource>(this IAsyncEnumerable <TSource> first, IAsyncEnumerable <TSource> second, IEqualityComparer <TSource> comparer) =>
 LinqEnumerable.Except(first, second, comparer);
Ejemplo n.º 2
0
 public static IAsyncEnumerable <TSource> Except <TSource>(this IAsyncEnumerable <TSource> first, IAsyncEnumerable <TSource> second) =>
 LinqEnumerable.Except(first, second);