CodeCommentStatementCollection.CopyTo(CodeCommentStatement[], Int32) Metoda

Definice

Zkopíruje objekty kolekce na zadaný jednorozměrný Array začátek v zadaném indexu.

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

Parametry

array
CodeCommentStatement[]

Jednorozměrná Array , která je cílem hodnot zkopírovaných z kolekce.

index
Int32

Index pole, ve kterém se má začít vkládat.

Výjimky

Cílové pole je multidimenzionální.

-nebo-

Počet prvků v objektu CodeCommentStatementCollection je větší než dostupná mezera mezi indexem cílového pole určeným parametrem index a koncem cílového pole.

Parametr array je null.

Parametr index je menší než minimální index cílového pole.

Příklady

Následující příklad ukazuje, jak kopírovat obsah objektu CodeCommentStatementCollection do pole začínající hodnotou indexu 0.

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

Platí pro

Viz také