ParallelEnumerable.AsEnumerable<TSource> メソッド

定義

ParallelQuery<TSource>IEnumerable<T> に変換して、クエリの順次評価を強制的に実行します。

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

型パラメーター

TSource

source の要素の型。

パラメーター

source
ParallelQuery<TSource>

IEnumerable<T> としてキャストするシーケンス。

戻り値

IEnumerable<TSource>

IEnumerable<T> として型指定された入力シーケンス。

例外

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

適用対象

こちらもご覧ください