編集

次の方法で共有


AsyncEnumerable.Except<TSource> Method

Definition

Produces the set difference of two sequences.

public static System.Collections.Generic.IAsyncEnumerable<TSource> Except<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> first, System.Collections.Generic.IAsyncEnumerable<TSource> second, System.Collections.Generic.IEqualityComparer<TSource>? comparer = default);
static member Except : System.Collections.Generic.IAsyncEnumerable<'Source> * System.Collections.Generic.IAsyncEnumerable<'Source> * System.Collections.Generic.IEqualityComparer<'Source> -> System.Collections.Generic.IAsyncEnumerable<'Source>
<Extension()>
Public Function Except(Of TSource) (first As IAsyncEnumerable(Of TSource), second As IAsyncEnumerable(Of TSource), Optional comparer As IEqualityComparer(Of TSource) = Nothing) As IAsyncEnumerable(Of TSource)

Type Parameters

TSource

The type of the elements of the input sequences.

Parameters

first
IAsyncEnumerable<TSource>

An IAsyncEnumerable<T> whose elements that are not also in second will be returned.

second
IAsyncEnumerable<TSource>

An IAsyncEnumerable<T> whose elements that also occur in the first sequence will cause those elements to be removed from the returned sequence.

comparer
IEqualityComparer<TSource>

An IEqualityComparer<T> to compare values.

Returns

IAsyncEnumerable<TSource>

A sequence that contains the set difference of the elements of two sequences.

Exceptions

second is null.

Applies to