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

RemoveRange() public method

public RemoveRange ( int index, int count ) : void
index int
count int
return void
			public override void RemoveRange(int index, int count) 
			{
				CheckRange(index, count, m_Adaptee.Count);

				for (int i = 0; i < count; i++) 
				{
					m_Adaptee.RemoveAt(index);
				}			
			}