CodeCatchClauseCollection.CopyTo(CodeCatchClause[], Int32) 方法

定義

將集合物件複製到從指定索引開始的一維 Array 實例。

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

參數

array
CodeCatchClause[]

一維 Array 值是從集合複製的值的目的地。

index
Int32

開始插入的陣列索引。

例外狀況

目的陣列是多維的。

-或-

CodeCatchClauseCollection 元素數大於參數指定 index 的目標陣列索引與目標陣列末端之間的可用空間。

參數 arraynull

參數 index 小於目標陣列的最小索引。

範例

以下範例示範如何將 a CodeCatchClauseCollection 的內容複製到索引值 0 開始的 CodeCatchClause 陣列。

// Copies the contents of the collection beginning at index 0 to the specified CodeCatchClause array.
// 'clauses' is a CodeCatchClause array.
collection.CopyTo( clauses, 0 );
' Copies the contents of the collection beginning at index 0 to the specified CodeCatchClause array.
' 'clauses' is a CodeCatchClause array.
collection.CopyTo(clauses, 0)

適用於

另請參閱