ParallelEnumerable.Cast<TResult>(ParallelQuery) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 ParallelQuery 的元素转换为指定的类型。
public:
generic <typename TResult>
[System::Runtime::CompilerServices::Extension]
static System::Linq::ParallelQuery<TResult> ^ Cast(System::Linq::ParallelQuery ^ source);
public static System.Linq.ParallelQuery<TResult> Cast<TResult> (this System.Linq.ParallelQuery source);
static member Cast : System.Linq.ParallelQuery -> System.Linq.ParallelQuery<'Result>
<Extension()>
Public Function Cast(Of TResult) (source As ParallelQuery) As ParallelQuery(Of TResult)
类型参数
- TResult
source
中的元素要转换成的类型。
参数
- source
- ParallelQuery
包含要转换的元素的序列。
返回
ParallelQuery<TResult>
一个序列,其中包含已转换为指定类型的源序列的每个元素。
例外
source
为 null 引用(在 Visual Basic 中为 Nothing)。
源序列的类型不能转换为 TResult
。