System.Collections.ArrayList.RangedArrayList.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) 
			{
				VerifyStateChanges();

				CheckRange(index, count, m_InnerCount);				

				m_InnerArrayList.RemoveRange(m_InnerIndex + index, count);

				m_InnerCount -= count;

				m_InnerStateChanges = m_InnerArrayList._version;
			}