CodeNamespaceCollection.CopyTo(CodeNamespace[], Int32) Méthode

Définition

Copie les objets de la collection dans une instance Array unidimensionnelle, en commençant à l'index spécifié.

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

Paramètres

array
CodeNamespace[]

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 CodeNamespaceCollection 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 utiliser la CopyTo méthode pour copier le contenu d’un CodeNamespaceCollection 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 CodeNamespace array.
// 'namespaces' is a CodeNamespace array.
collection->CopyTo( namespaces, 0 );
// Copies the contents of the collection beginning at index 0,
// to the specified CodeNamespace array.
// 'namespaces' is a CodeNamespace array.
collection.CopyTo( namespaces, 0 );
' Copies the contents of the collection beginning at index 0,
' to the specified CodeNamespace array.
' 'namespaces' is a CodeNamespace array.
collection.CopyTo(namespaces, 0)

S’applique à

Voir aussi