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

CopyTo() public method

public CopyTo ( int index, System array, int arrayIndex, int count ) : void
index int
array System
arrayIndex int
count int
return void
			public override void CopyTo(int index, System.Array array, int arrayIndex, int count) 
			{
				CheckRange(index, count, m_InnerCount);				

				m_InnerArrayList.CopyTo(m_InnerIndex + index, array, arrayIndex, count);
			}

Same methods

ArrayList.RangedArrayList::CopyTo ( System array ) : void
ArrayList.RangedArrayList::CopyTo ( System array, int index ) : void