Sdílet prostřednictvím


CompilerErrorCollection.CopyTo(CompilerError[], Int32) Metoda

Definice

Zkopíruje hodnoty kolekce do jednorozměrné Array instance v zadaném indexu.

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

Parametry

array
CompilerError[]

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

index
Int32

Index v poli, ve kterém se má začít kopírovat.

Výjimky

Pole označené parametrem array je multidimenzionální.

-nebo-

Počet prvků v parametru CompilerErrorCollection je větší než dostupná mezera mezi hodnotou indexu parametru arrayIndex v matici označené parametrem array a koncem pole označeného parametrem array .

Parametr array je null.

Parametr index je menší než lowbound pole označené parametrem array .

Příklady

Následující příklad ukazuje, jak použít metodu CopyTo ke zkopírování obsahu CompilerErrorCollection do pole, počínaje zadanou hodnotou indexu.

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

Platí pro

Viz také