IEnumerator::MoveNext Method ()
Advances the enumerator to the next element of the collection.
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System::Booleantrue if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.
| Exception | Condition |
|---|---|
| InvalidOperationException | The collection was modified after the enumerator was created. |
After an enumerator is created or after the Reset method is called, an enumerator is positioned before the first element of the collection, and the first call to the MoveNext method moves the enumerator over the first element of the collection.
If MoveNext passes the end of the collection, the enumerator is positioned after the last element in the collection and MoveNext returns false. When the enumerator is at this position, subsequent calls to MoveNext also return false until Reset is called.
An enumerator remains valid as long as the collection remains unchanged. If changes are made to the collection, such as adding, modifying, or deleting elements, the enumerator is irrecoverably invalidated and the next call to MoveNext or Reset throws an InvalidOperationException.
The following code example demonstrates the implementation of the IEnumerator interfaces for a custom collection. In this example, MoveNext is not explicitly called, but it is implemented to support the use of foreach (for each in Visual Basic). This code example is part of a larger example for the IEnumerator interface.
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1