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

定义

将整个 ListBox.IntegerCollection 复制到现有整数数组的指定位置。

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)

参数

destination
Array

向其中复制 ListBox.IntegerCollection 的数组。

index
Int32

ListBox.IntegerCollection 复制到目标数组中的位置。

实现

例外

.NET 5 及更高版本: destinationnull

注解

使用此方法 CopyTo 将多个集合中的整数合并到单个数组中。 然后,可以使用此数组来使用AddRange该方法填充另一个ListBox控件的内容。

适用于