共用方式為


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)

適用於

另請參閱