ParallelEnumerable.ToList<TSource>(ParallelQuery<TSource>) メソッド

定義

ParallelQuery<TSource> から List<T> を作成します。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Generic::List<TSource> ^ ToList(System::Linq::ParallelQuery<TSource> ^ source);
public static System.Collections.Generic.List<TSource> ToList<TSource> (this System.Linq.ParallelQuery<TSource> source);
static member ToList : System.Linq.ParallelQuery<'Source> -> System.Collections.Generic.List<'Source>
<Extension()>
Public Function ToList(Of TSource) (source As ParallelQuery(Of TSource)) As List(Of TSource)

型パラメーター

TSource

source の要素の型。

パラメーター

source
ParallelQuery<TSource>

List<T> の作成元のシーケンス。

戻り値

List<TSource>

入力シーケンスの要素を含む List<T>

例外

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

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

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

適用対象

こちらもご覧ください