Summary
Provides the implementation for
CollectionExtensions.Select<TInput, TResult>(this IList<TInput>, Func<TInput, TResult>).
Generic type parameters
| TInput |
The type of the elements of the original collection. |
| TResult |
The type of the value returned by the selector function. |
Constructors
Instance methods
| IEnumerator<TResult> | | Returns an enumerator to iterate over the collection. |
| ListSelectIterator<TInput, TResult> | |
Inverts the order of the elements in a sequence. |
| ListSelectIterator<TInput, TNewResult> | Select<TNewResult>(Func<TResult, TNewResult> selector) |
Projects each element of a sequence into a new form. |
| TResult[] | |
Creates an array from a projected list. |
| List<TResult> | |
Creates a new list from a projected list. |