System.Collections.ArrayList.IListWrapper.GetEnumerator C# (CSharp) Method

GetEnumerator() public method

public GetEnumerator ( int index, int count ) : IEnumerator
index int
count int
return IEnumerator
            public override IEnumerator GetEnumerator(int index, int count)
            {
                if (index < 0 || count < 0)
                    throw new ArgumentOutOfRangeException(index < 0 ? nameof(index) : nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum);
                Contract.EndContractBlock();
                if (_list.Count - index < count)
                    throw new ArgumentException(SR.Argument_InvalidOffLen);

                return new IListWrapperEnumWrapper(this, index, count);
            }

Same methods

ArrayList.IListWrapper::GetEnumerator ( ) : IEnumerator