Enumerable.Cast<TResult> Method
Casts the elements of an IEnumerable to the specified type.
Namespace: System.Linq
Assembly: System.Core (in System.Core.dll)
Type Parameters
- TResult
The type to cast the elements of source to.
Parameters
- source
- Type: System.Collections.IEnumerable
The IEnumerable that contains the elements to be cast to type TResult.
Return Value
Type: System.Collections.Generic.IEnumerable<TResult>An IEnumerable<T> that contains each element of the source sequence cast to the specified type.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).| 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.
The Cast<TResult>(IEnumerable) method enables the standard query operators to be invoked on non-generic collections by supplying the necessary type information. For example, ArrayList does not implement IEnumerable<T>, but by calling Cast<TResult>(IEnumerable) on the ArrayList object, the standard query operators can then be used to query the sequence.
If an element cannot be cast to type TResult, this method will throw an exception. To obtain only those elements that can be cast to type TResult, use the OfType<TResult> method instead of Cast<TResult>(IEnumerable).
In a query expression, an explicitly typed iteration variable translates to an invocation of Cast<TResult>(IEnumerable). This example shows the syntax for an explicitly typed range variable.
The following code example demonstrates how to use Cast<TResult>(IEnumerable) to enable the use of the standard query operators on an ArrayList.
System.Collections.ArrayList fruits = new System.Collections.ArrayList(); fruits.Add("mango"); fruits.Add("apple"); fruits.Add("lemon"); IEnumerable<string> query = fruits.Cast<string>().OrderBy(fruit => fruit).Select(fruit => fruit); // The following code, without the cast, doesn't compile. //IEnumerable<string> query1 = // fruits.OrderBy(fruit => fruit).Select(fruit => fruit); foreach (string fruit in query) { Console.WriteLine(fruit); } // This code produces the following output: // // apple // lemon // mango
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.