Bagikan melalui


CodeCatchClauseCollection.CopyTo(CodeCatchClause[], Int32) Metode

Definisi

Menyalin objek koleksi ke instans satu dimensi Array yang dimulai pada indeks yang ditentukan.

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)

Parameter

array
CodeCatchClause[]

Satu dimensi Array yang merupakan tujuan nilai yang disalin dari koleksi.

index
Int32

Indeks array untuk mulai menyisipkan.

Pengecualian

Array tujuan bersifat multidmensional.

-atau-

Jumlah elemen dalam CodeCatchClauseCollection lebih besar dari ruang yang tersedia antara indeks array target yang ditentukan oleh index parameter dan akhir array target.

Parameternya array adalah null.

Parameter index kurang dari indeks minimum array target.

Contoh

Contoh berikut menunjukkan cara menyalin konten ke CodeCatchClauseCollection array yang CodeCatchClause dimulai pada nilai indeks 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 );
// 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)

Berlaku untuk

Lihat juga