TabControl.TabPageCollection.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

作为集合中元素的复制目标位置的一维数组。 该数组的索引必须从零开始。

index
Int32

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

实现

例外

destnull

index 小于零。

dest 是多维的。

- 或 -

TabControl.TabPageCollection 中的元素数目大于从索引到 dest 的结尾的可用空间。

TabControl.TabPageCollection 中的项不能自动强制转换为 dest 类型。

注解

此成员是显式接口成员的实现。 它只能在 TabControl.TabPageCollection 实例被强制转换为 ICollection 接口时使用。

适用于