ImageList.ImageCollection.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

一维 Array,用作从集合复制的元素的目标数组。 该数组的索引必须从零开始。

index
Int32

Array 中从零开始的索引,在此处开始复制。

实现

例外

destnull

index 小于 0。

dest 是多维的。

ComboBox.ObjectCollection 的类型无法自动强制转换为目标数组的类型。

适用于