{TOC}
| Namespace: | System.Linq |
| Assembly: | System.Core.dll |
| Extends: | IEnumerable<T> |
Back to
Standard Query Operator IndexEditIntroduction
The Cast operator casts the elements of a sequence to a given type.
EditMethod Signatures
public static IEnumerable<TResult> Cast<TResult>(
this IEnumerable source)EditExceptions
Throws an ArgumentNullException if
source is null.
EditCode Samples
TODO:Needs code sample.