Editja

ListBox.SelectedIndexCollection.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 ^ destination, int index);
public void CopyTo(Array destination, int index);
abstract member CopyTo : Array * int -> unit
override this.CopyTo : Array * int -> unit
Public Sub CopyTo (destination As Array, index As Integer)

Parameters

destination
Array

The destination array.

index
Int32

The index in the destination array at which storing begins.

Implements

Remarks

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

Applies to