Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Constructor: ListSelectIterator<TInput, TResult>(IList<TInput>, Func<TInput, TResult>, bool)

Declaration

public ListSelectIterator<TInput, TResult>(
    IList<TInput> source,
    Func<TInput, TResult> selector,
    bool reversed = false
)

Summary

Constructor.

Parameters

IList<TInput>source A list of values to invoke the transform function on.
Func<TInput, TResult>selector A transform function to apply to each element.
boolreversed Specifies whether or not to reverse the order of elements.