System.Collections.ArrayList.RangedArrayList.Reverse C# (CSharp) Method

Reverse() public method

public Reverse ( int index, int count ) : void
index int
count int
return void
			public override void Reverse(int index, int count) 
			{
				VerifyStateChanges();

				CheckRange(index, count, m_InnerCount);				

				m_InnerArrayList.Reverse(m_InnerIndex + index, count);

				m_InnerStateChanges = m_InnerArrayList._version;
			}

Same methods

ArrayList.RangedArrayList::Reverse ( ) : void