ParallelEnumerable.ElementAt<TSource> メソッド

定義

並列シーケンス内の指定したインデックス位置にある要素を返します。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static TSource ElementAt(System::Linq::ParallelQuery<TSource> ^ source, int index);
public static TSource ElementAt<TSource> (this System.Linq.ParallelQuery<TSource> source, int index);
static member ElementAt : System.Linq.ParallelQuery<'Source> * int -> 'Source
<Extension()>
Public Function ElementAt(Of TSource) (source As ParallelQuery(Of TSource), index As Integer) As TSource

型パラメーター

TSource

source の要素の型。

パラメーター

source
ParallelQuery<TSource>

要素を返すシーケンス。

index
Int32

取得する要素の、0 から始まるインデックス。

戻り値

TSource

ソース シーケンス内の指定された位置にある要素。

例外

WithCancellation<TSource>(ParallelQuery<TSource>, CancellationToken) 経由で渡されたトークンで、クエリが取り消されました。

source が null 参照 (Visual Basic では Nothing) です。

index が 0 未満か source に含まれている要素数以上の値です。

クエリ評価中に 1 つまたは複数の例外が発生しました。

適用対象

こちらもご覧ください