Span<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 ref T Current { get; }
member this.Current : 'T
Public ReadOnly Property Current As T

Property Value

T

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

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 span. MoveNext must be called to advance the enumerator to the first element of the span before reading the value of Current.

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

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

Applies to