ImageList::ImageCollection::ICollection::CopyTo Method (Array^, Int32)

 

This API supports the product infrastructure and is not intended to be used directly from your code.

Copies the items in this collection to a compatible one-dimensional array, starting at the specified index of the target array.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

private:
virtual void CopyTo(
	Array^ dest,
	int index
) sealed = ICollection::CopyTo

Parameters

dest
Type: System::Array^

The one-dimensional Array that is the destination of the elements copied from the collection. The array must have zero-based indexing.

index
Type: System::Int32

The zero-based index in the Array at which copying begins.

Exception Condition
ArgumentNullException

dest is null.

ArgumentOutOfRangeException

index is less than 0.

ArgumentException

dest is multidimensional.

-or-

The number of elements in the ComboBox::ObjectCollection is greater than the available space from index to the end of the destination array.

InvalidCastException

The type of the ComboBox::ObjectCollection cannot be cast automatically to the type of the destination array.

.NET Framework
Available since 1.1
Return to top
Show: