EnumerableRowCollectionExtensions::Cast<TResult> Method (EnumerableRowCollection^)
Converts the elements of an EnumerableRowCollection to the specified type. This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Assembly: System.Data.DataSetExtensions (in System.Data.DataSetExtensions.dll)
public: generic<typename TResult> [ExtensionAttribute] static EnumerableRowCollection<TResult>^ Cast( EnumerableRowCollection^ source )
Parameters
- source
-
Type:
System.Data::EnumerableRowCollection^
The EnumerableRowCollection that contains the elements to be converted.
Return Value
Type: System.Data::EnumerableRowCollection<TResult>^An EnumerableRowCollection that contains each element of the source sequence converted to the specified type.
Type Parameters
- TResult
The type to convert the elements of source to.
| Exception | Condition |
|---|---|
| ArgumentNullException | source is null. |
| InvalidCastException | An element in the sequence cannot be cast to type TResult. |
This method is implemented by using deferred execution. The immediate return value is an object that stores all the information that is required to perform the action. The query represented by this method is not executed until the object is enumerated either by calling its GetEnumerator method directly or by using foreach in Visual C# or For Each in Visual Basic.
Available since 3.5