ListView.SelectedListViewItemCollection.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

An Array representing the array to copy the contents of the collection to.

index
Int32

The location within the destination array to copy the items from the collection to.

Implements

Remarks

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

Applies to