System.Collections.ArrayList.IListWrapper.IListWrapperEnumWrapper.Reset C# (CSharp) Method

Reset() public method

public Reset ( ) : void
return void
                public void Reset()
                {
                    _en.Reset();
                    int startIndex = _initialStartIndex;
                    while (startIndex-- > 0 && _en.MoveNext()) ;
                    _remaining = _initialCount;
                    _firstCall = true;
                }
            }
ArrayList.IListWrapper.IListWrapperEnumWrapper