ListBox.SelectedObjectCollection.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

集合中的项将复制到的目标数组中的位置。

实现

注解

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

适用于