CodeTypeDeclarationCollection.CopyTo(CodeTypeDeclaration[], Int32) 方法

定义

从指定的索引处开始,将 CodeTypeDeclarationCollection 对象中的元素复制到一维 Array 实例。

public:
 void CopyTo(cli::array <System::CodeDom::CodeTypeDeclaration ^> ^ array, int index);
public void CopyTo (System.CodeDom.CodeTypeDeclaration[] array, int index);
member this.CopyTo : System.CodeDom.CodeTypeDeclaration[] * int -> unit
Public Sub CopyTo (array As CodeTypeDeclaration(), index As Integer)

参数

array
CodeTypeDeclaration[]

一维 Array,它是从集合所复制值的目标位置。

index
Int32

插入开始处的数组的索引。

例外

该目标数组是多维数组。

- 或 -

CodeTypeDeclarationCollection 中的元素数大于 index 参数所指定的目标数组索引位置与目标数组结尾位置之间的可用空间。

array 参数为 null

index 参数小于目标数组的最小索引。

示例

下面的示例演示如何使用 CopyTo 方法将 对象的内容 CodeTypeDeclarationCollection 复制到数组中,从指定的索引值开始。

// Copies the contents of the collection, beginning at index 0,
// to the specified CodeTypeDeclaration array.
// 'declarations' is a CodeTypeDeclaration array.
collection->CopyTo( declarations, 0 );
// Copies the contents of the collection, beginning at index 0,
// to the specified CodeTypeDeclaration array.
// 'declarations' is a CodeTypeDeclaration array.
collection.CopyTo( declarations, 0 );
' Copies the contents of the collection, beginning at index 0,
' to the specified CodeTypeDeclaration array.
' 'declarations' is a CodeTypeDeclaration array.
collection.CopyTo(declarations, 0)

适用于

另请参阅