Bagikan melalui


CodeAttributeArgumentCollection.CopyTo(CodeAttributeArgument[], Int32) Metode

Definisi

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

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

Parameter

array
CodeAttributeArgument[]

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 CodeAttributeArgumentCollection 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 CodeAttributeArgumentCollection objek ke array yang CodeAttributeArgument dimulai pada nilai indeks tertentu.

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

Berlaku untuk