System.Collections.SortedList.SortedListEnumerator.Reset C# (CSharp) 메소드

Reset() 공개 메소드

public Reset ( ) : void
리턴 void
            public virtual void Reset()
            {
                if (_version != _sortedList._version) throw new InvalidOperationException(SR.InvalidOperation_EnumFailedVersion);
                _index = _startIndex;
                _current = false;
                _key = null;
                _value = null;
            }
        }