System.Collections.SortedList.SortedListEnumerator.SortedListEnumerator C# (CSharp) Method

SortedListEnumerator() private method

private SortedListEnumerator ( SortedList sortedList, int index, int count, int getObjRetType ) : System.Diagnostics
sortedList SortedList
index int
count int
getObjRetType int
return System.Diagnostics
            internal SortedListEnumerator(SortedList sortedList, int index, int count,
                                 int getObjRetType)
            {
                _sortedList = sortedList;
                _index = index;
                _startIndex = index;
                _endIndex = index + count;
                _version = sortedList._version;
                _getObjectRetType = getObjRetType;
                _current = false;
            }