AsyncEnumerable.Concat<TSource> Methode

Definitie

Voegt twee reeksen samen.

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Generic::IAsyncEnumerable<TSource> ^ Concat(System::Collections::Generic::IAsyncEnumerable<TSource> ^ first, System::Collections::Generic::IAsyncEnumerable<TSource> ^ second);
public static System.Collections.Generic.IAsyncEnumerable<TSource> Concat<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> first, System.Collections.Generic.IAsyncEnumerable<TSource> second);
static member Concat : System.Collections.Generic.IAsyncEnumerable<'Source> * System.Collections.Generic.IAsyncEnumerable<'Source> -> System.Collections.Generic.IAsyncEnumerable<'Source>
<Extension()>
Public Function Concat(Of TSource) (first As IAsyncEnumerable(Of TSource), second As IAsyncEnumerable(Of TSource)) As IAsyncEnumerable(Of TSource)

Type parameters

TSource

Het type van de elementen van de invoerreeksen.

Parameters

first
IAsyncEnumerable<TSource>

De eerste reeks die moet worden samengevoegd.

second
IAsyncEnumerable<TSource>

De volgorde die moet worden samengevoegd met de eerste reeks.

Retouren

IAsyncEnumerable<TSource>

Een IAsyncEnumerable<T> die de samengevoegde elementen van de twee invoerreeksen bevat.

Uitzonderingen

second is null.

Van toepassing op