com.calitha.commons.IntegerList.CopyTo C# (CSharp) Method

CopyTo() public method

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.
return 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