Delegate IndexedEnumeratedElementAction<T>
Represents a function that performs an action on an enumerated element, also provided its index in the enumeration order.
public delegate void IndexedEnumeratedElementAction<T>(int index, T element)
Parameters
indexintThe index of the element, provided the enumeration order.
elementTThe element.
Type Parameters
TThe type of the element.
- Extension Methods