Click or drag to resize
ArrayListGetEnumerator Method (Int32, Int32)
Returns an enumerator for a range of elements in the ArrayList.

Namespace: System.Collections
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public virtual IEnumerator GetEnumerator(
	int index,
	int count
)

Parameters

index
Type: SystemInt32
The zero-based starting index of the ArrayList section that the enumerator should refer to.
count
Type: SystemInt32
The number of elements in the ArrayList section that the enumerator should refer to.

Return Value

Type: IEnumerator
An IEnumerator for the specified range of elements in the ArrayList.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionindex is less than zero.-or- count is less than zero.
ArgumentExceptionindex and count do not specify a valid range in the ArrayList.
See Also