[This is preliminary documentation and is subject to change.]

Advances the enumerator to the next element of the collection.

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public bool MoveNext()
Visual Basic
Public Function MoveNext As Boolean
Visual C++
public:
virtual bool MoveNext() sealed
F#
abstract MoveNext : unit -> bool 
override MoveNext : unit -> bool 
JScript
public final function MoveNext() : boolean

Return Value

true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.

Implements

IEnumerator..::..MoveNext()()()()

Exceptions

ExceptionCondition
System..::..InvalidOperationExceptionThe collection was modified after the enumerator was created.

See Also