ListBox.SelectedIndexCollection.CopyTo(Array, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将整个集合复制到现有数组中,从该数组内的指定位置开始复制。
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
目标数组中的索引,存储从此处开始。
实现
注解
可以使用此方法将多个集合中的选定索引合并到单个数组中。