System.Collections.ArrayList.ArrayListWrapper.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) 
			{
				return m_InnerArrayList.GetRange(index, count);
			}