CodeStatementCollection.CopyTo(CodeStatement[], 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 éléments de l'objet CodeStatementCollection dans une instance Array unidimensionnelle, en commençant à l'index spécifié.
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)
Paramètres
- array
- CodeStatement[]
Array unidimensionnel qui représente la destination des valeurs copiées à partir de la collection.
- index
- Int32
Index du tableau à partir duquel commencer l'insertion.
Exceptions
Le tableau de destination est multidimensionnel.
- ou -
Le nombre d'éléments dans le CodeStatementCollection est supérieur à l'espace disponible entre l'index du tableau cible spécifié par le paramètre index
et la fin du tableau cible.
Le paramètre array
a la valeur null
.
Le paramètre index
est inférieur à l'index minimal du tableau cible.
Exemples
L’exemple suivant montre comment copier le contenu d’un CodeStatementCollection objet dans un tableau, en commençant à la valeur d’index spécifiée.
// 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)