CodeTypeReferenceCollection.CopyTo(CodeTypeReference[], Int32) 方法

定义

将集合中的项复制到指定一维 Array 的指定索引处。

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

参数

array
CodeTypeReference[]

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

index
Int32

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

例外

array 参数多维。

- 或 -

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

array 参数为 null

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

示例

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

适用于

另请参阅