CheckedListBox.CheckedItemCollection.CopyTo(Array, Int32) Method

Definition

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

public:
 virtual void CopyTo(Array ^ dest, int index);
public void CopyTo (Array dest, int index);
abstract member CopyTo : Array * int -> unit
override this.CopyTo : Array * int -> unit
Public Sub CopyTo (dest As Array, index As Integer)

Parameters

dest
Array

The destination array.

index
Int32

The zero-based relative index in dest at which copying begins.

Implements

Exceptions

array is null.

array is multidimensional.

index is less than zero.

The number of elements in the source Array is greater than the available space from index to the end of the destination Array.

The type of the source Array cannot be cast automatically to the type of the destination Array.

Remarks

You can use this method to combine the selected indexes from multiple collections into a single array.

Applies to