ListBox.IntegerCollection.CopyTo(Array, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将整个 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 及更高版本: destination
是 null
。
注解
使用此方法 CopyTo 将多个集合中的整数合并到单个数组中。 然后,可以使用此数组来使用AddRange该方法填充另一个ListBox控件的内容。