com.calitha.commons.IntegerList.CopyTo C# (CSharp) 메소드

CopyTo() 공개 메소드

Copies the entire list to a compatible one-dimensional array, starting at the beginning of the target array.
public CopyTo ( Array array ) : void
array Array The one-dimensional Array that is the destination /// of the elements copied from the list. /// The Array must have zero-based indexing.
리턴 void
		public void CopyTo(Array array)
		{
			list.CopyTo(array);
		}

Same methods

IntegerList::CopyTo ( Array array, int arrayIndex ) : void
IntegerList::CopyTo ( int index, Array array, int arrayIndex, int count ) : void