System.Collections.Stack.Enumerator.Reset C# (CSharp) Method

Reset() public method

public Reset ( ) : void
return void
			public virtual void Reset() {
				if (modCount != stack.modCount) {
					throw new InvalidOperationException();
				}

				current = BOF;
			}
		}