IEnumerator<T> Interface

Definition

Iterates over a sequence of values.

Delphi
IEnumerator<T> = interface(IInterface)

Type Parameters

T

The type of values returned by the enumerator.

Inheritance
IInterface
IEnumerator<T>

Properties

Current

Gets the value at the current position of the enumerator.

Methods

GetCurrent

Gets the value at the current position of the enumerator.

MoveNext

Advances the enumerator to the next value in the sequence.