ParallelEnumerable.AsEnumerable<TSource> 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 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)。