AsyncEnumerable.Concat<TSource> メソッド

定義

2 つのシーケンスを連結します。

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)

型パラメーター

TSource

入力シーケンスの要素の型。

パラメーター

first
IAsyncEnumerable<TSource>

連結する最初のシーケンス。

second
IAsyncEnumerable<TSource>

最初のシーケンスに連結するシーケンス。

返品

IAsyncEnumerable<TSource>

2 つの入力シーケンスの連結された要素を格納する IAsyncEnumerable<T>

例外

secondnullです。

適用対象