IEnumerator<T>

Overview

Enumerator interface.

Location


Properties


Current    (declared in IEnumerator)

Contains the current value.

 

property Current: Object read;

 

Object Current { get; }

 

var Current: Object { get{} }

 

Object Current { __get; }

 

ReadOnly Property Current() As Object

Current

Contains the current value.

 

property Current: T read;

 

T Current { get; }

 

var Current: T { get{} }

 

T Current { __get; }

 

ReadOnly Property Current() As T

Required Methods


Dispose    (declared in IDisposable)

 

method Dispose

 

void Dispose()

 

func Dispose()

 

void Dispose()

 

Sub Dispose()

MoveNext    (declared in IEnumerator)

Moves to the next value, returns true if there is one.

 

method MoveNext: Boolean

 

Boolean MoveNext()

 

func MoveNext() -> Boolean

 

Boolean MoveNext()

 

Function MoveNext() As Boolean