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

定义

从指定的索引处开始,将 CodeTypeDeclarationCollection 对象中的元素复制到一维 Array 实例。Copies the elements in the CodeTypeDeclarationCollection object to a one-dimensional Array instance, starting at the specified index.

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,它是从集合所复制值的目标位置。The one-dimensional Array that is the destination of the values copied from the collection.

index
Int32

插入开始处的数组的索引。The index of the array at which to begin inserting.

例外

该目标数组是多维数组。The destination array is multidimensional.

- 或 --or- CodeTypeDeclarationCollection 中的元素数大于 index 参数所指定的目标数组索引位置与目标数组结尾位置之间的可用空间。The number of elements in the CodeTypeDeclarationCollection is greater than the available space between the index of the target array specified by the index parameter and the end of the target array.

array 参数为 nullThe array parameter is null.

index 参数小于目标数组的最小索引。The index parameter is less than the target array's minimum index.

示例

下面的示例演示如何使用方法将 CopyTo 对象的内容复制 CodeTypeDeclarationCollection 到数组,从指定的索引值开始。The following example demonstrates how to use the CopyTo method to copy the contents of a CodeTypeDeclarationCollection object to an array, starting at the specified index value.

// 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)

适用于

另请参阅