AsyncEnumerable.Skip<TSource> メソッド

定義

シーケンス内の指定された数の要素をバイパスし、残りの要素を返します。

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

型パラメーター

TSource

ソースの要素の型。

パラメーター

source
IAsyncEnumerable<TSource>

要素を返す IAsyncEnumerable<T>

count
Int32

残りの要素を返す前にスキップする要素の数。

返品

IAsyncEnumerable<TSource>

入力シーケンス内の指定したインデックスの後に発生する要素を格納する IAsyncEnumerable<T>

例外

sourcenullです。

適用対象