ComboBox::ObjectCollection::CopyTo Method (array<Object^>^, Int32)

 

Copies the entire collection into an existing array of objects at a specified location within the array.

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

public:
void CopyTo(
	array<Object^>^ destination,
	int arrayIndex
)

Parameters

destination
Type: array<System::Object^>^

The object array to copy the collection to.

arrayIndex
Type: System::Int32

The location in the destination array to copy the collection to.

You can use this method to combine the items from multiple collections into a single array. You can then use this array to populate the contents of another ComboBox control using the AddRange method of the ComboBox::ObjectCollection class.

.NET Framework
Available since 1.1
Return to top
Show: