RegExpMatchList RegExpMatchListEnumerator Reset Method C# API
Sets the enumerator to its initial position, which is before the first element in the collection.

Namespace: Facilita.Native
Assembly: clrNativeWrapper (in clrNativeWrapper.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public void Reset()

Implements

IEnumerator Reset 
Exceptions

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

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 the MoveNext  or Reset method throws an InvalidOperationException.
See Also