CompilerErrorCollection.CopyTo(CompilerError[], Int32) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Copie les valeurs de la collection vers une instance de Array à une dimension, à l'index spécifié.
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)
Paramètres
- array
- CompilerError[]
Array unidimensionnel qui est la destination des valeurs copiées à partir de la CompilerErrorCollection.
- index
- Int32
Index du tableau à partir duquel commencer la copie.
Exceptions
Le tableau indiqué par le paramètre array
est multidimensionnel.
- ou -
Le nombre d'éléments dans CompilerErrorCollection est supérieur à la quantité d'espace disponible entre la valeur d'index du paramètre arrayIndex
dans le tableau indiqué par le paramètre array
et la fin du tableau indiquée par le paramètre array
.
Le paramètre array
a la valeur null
.
Le paramètre index
est inférieur à la limite inférieure du tableau indiquée par le paramètre array
.
Exemples
L’exemple suivant montre comment utiliser la CopyTo méthode pour copier le contenu d’un CompilerErrorCollection tableau, en commençant à la valeur d’index spécifiée.
// 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)