ArraySegment<T>.Enumerator.Current Property

Definition

Gets a reference to the item at the current position of the enumerator.

public:
 property T Current { T get(); };
public T Current { get; }
member this.Current : 'T
Public ReadOnly Property Current As T

Property Value

T

The element of the ArraySegment<T> at the current position of the enumerator.

Implements

Remarks

Current is undefined under either of the following conditions:

  • Immediately after the enumerator is created, the enumerator is positioned before the first element in the array segment. MoveNext must be called to advance the enumerator to the first element of the array segment before reading the value of Current.

  • The last call to MoveNext returned false, which indicates the end of the array segment.

Current returns the same value until MoveNext is called. MoveNext sets Current to the next item in the array segment.

Applies to