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

Reset() public method

public Reset ( ) : void
return void
			public void Reset ()
			{
				if (host.modificationCount != stamp || invalid)
					throw new InvalidOperationException (xstr);

				pos = -1;
				currentKey = null;
				currentValue = null;
			}