Queue<T>.Enumerator.IEnumerator.Reset Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Sets the enumerator to its initial position, which is before the first element in the collection.
Assembly: System (in System.dll)
| Exception | Condition |
|---|---|
| InvalidOperationException | The collection was modified after the enumerator was created. |
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.