Enumerable.Cast<TResult> Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Converts the elements of an IEnumerable to the specified type.

Namespace:  System.Linq
Assembly:  System.Core (in System.Core.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function Cast(Of TResult) ( _
    source As IEnumerable _
) As IEnumerable(Of TResult)
public static IEnumerable<TResult> Cast<TResult>(
    this IEnumerable source
)

Type Parameters

  • TResult
    The type to convert the elements of source to.

Parameters

Return Value

Type: System.Collections.Generic.IEnumerable<TResult>
An IEnumerable<T> that contains each element of the source sequence converted 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.

Exceptions

Exception Condition
ArgumentNullException

source is nulla null reference (Nothing in Visual Basic).

InvalidCastException

An element in the sequence cannot be cast to type TResult.

Remarks

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.

from int i in objects
From i As Integer In objects

Examples

The following code example demonstrates how to use Cast<TResult>(IEnumerable) to enable the use of the standard query operators on an ArrayList.

      ' Create an ArrayList and add items to it.
      Dim fruits As New List(Of String)()
      fruits.Add("apple")
      fruits.Add("mango")

      ' Call Cast(Of String) to cast the ArrayList elements to strings.
      ' Then call Select() to project the strings as the query result.
      Dim query As IEnumerable(Of String) = _
          fruits.Cast(Of String)().Select(Function(fruit) fruit)

      Dim output As New System.Text.StringBuilder
      For Each fruit As String In query
         output.AppendLine(fruit)
      Next

      ' Display the output.
      outputBlock.Text &= output.ToString() & vbCrLf

      ' This code produces the following output:
      '
      ' apple
      ' mango

      List<string> fruits = new List<string>();
      fruits.Add("apple");
      fruits.Add("mango");

      IEnumerable<string> query =
          fruits.Cast<string>().Select(fruit => fruit);

      foreach (string fruit in query)
      {
         outputBlock.Text += fruit + "\n";
      }

      // This code produces the following output:
      //
      // apple
      // mango

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.