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
。