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