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

Same methods

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