Bagikan melalui


CodeStatementCollection.CopyTo(CodeStatement[], Int32) Metode

Definisi

Menyalin elemen CodeStatementCollection objek ke instans satu dimensi Array , dimulai dari indeks yang ditentukan.

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

Parameter

array
CodeStatement[]

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 CodeStatementCollection 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 CodeStatementCollection objek ke array, dimulai dari nilai indeks yang ditentukan.

// Copies the contents of the collection beginning at index 0 to the specified CodeStatement array.
// 'statements' is a CodeStatement array.
collection->CopyTo( statements, 0 );
// Copies the contents of the collection beginning at index 0 to the specified CodeStatement array.
// 'statements' is a CodeStatement array.
CodeStatement[] statementArray = new CodeStatement[collection.Count];
collection.CopyTo( statementArray, 0 );
' Copies the contents of the collection beginning at index 0 to the specified CodeStatement array.
' 'statements' is a CodeStatement array.
Dim statementArray(collection.Count - 1) As CodeStatement
collection.CopyTo(statementArray, 0)

Berlaku untuk

Lihat juga