ListBox.SelectedIndexCollection.CopyTo(Array, Int32) 方法

定义

将整个集合复制到现有数组中,从该数组内的指定位置开始复制。

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

参数

destdestination
Array

目标数组。

index
Int32

目标数组中的索引,存储从此处开始。

实现

注解

可以使用此方法将多个集合中的选定索引合并到单个数组中。

适用于