ParallelEnumerable.Cast<TResult>(ParallelQuery) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Converts the elements of a ParallelQuery to the specified type.
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)
Type Parameters
- TResult
The type to convert the elements of source
to.
Parameters
- source
- ParallelQuery
The sequence that contains the elements to be converted.
Returns
ParallelQuery<TResult>
A sequence that contains each element of the source sequence converted to the specified type.
Exceptions
source
is a null reference (Nothing in Visual Basic).
The type of the source sequence could not be converted to TResult
.
Applies to
See also
Surađujte s nama na GitHubu
Izvor za ovaj sadržaj možete pronaći na GitHubu, gdje možete stvarati i pregledavati probleme i zahtjeve za povlačenjem. Dodatne informacije potražite u našem vodiču za suradnike.