System.Collections.ArrayList.ArrayListAdapter.GetRange C# (CSharp) Method

GetRange() public method

public GetRange ( int index, int count ) : ArrayList
index int
count int
return ArrayList
			public override ArrayList GetRange(int index, int count) 
			{
				CheckRange(index, count, m_Adaptee.Count);
				
				return new RangedArrayList(this, index, count);
			}