ListView.CheckedIndexCollection.ICollection.CopyTo(Array, Int32) 方法

定义

将选中项索引的集合复制到数组中。

 virtual void System.Collections.ICollection.CopyTo(Array ^ dest, int index) = System::Collections::ICollection::CopyTo;
void ICollection.CopyTo (Array dest, int index);
abstract member System.Collections.ICollection.CopyTo : Array * int -> unit
override this.System.Collections.ICollection.CopyTo : Array * int -> unit
Sub CopyTo (dest As Array, index As Integer) Implements ICollection.CopyTo

参数

dest
Array

Int32 类型的数组。

index
Int32

数组中开始复制的位置的索引(从零开始)。

实现

例外

数组类型无法强制转换为 Int32

注解

该数组必须包含 32 位有符号整数,或者它必须是 Object 数组。

适用于