Table of Contents

Delegate IndexedEnumeratedElementAction<T>

Namespace
Garyon.Objects
Assembly
Garyon.dll

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

index int

The index of the element, provided the enumeration order.

element T

The element.

Type Parameters

T

The type of the element.

Extension Methods