CodeAttributeArgumentCollection.CopyTo(CodeAttributeArgument[], Int32) Méthode

Définition

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

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

Paramètres

array
CodeAttributeArgument[]

Unidimensionnel Array qui est la destination des valeurs copiées à partir de la collection.

index
Int32

Index du tableau auquel commencer l’insertion.

Exceptions

Le tableau de destination est multidimensionnel.

- ou -

Le nombre d’éléments dans le tableau CodeAttributeArgumentCollection cible est supérieur à l’espace disponible entre l’index du tableau cible spécifié par le index paramètre et la fin du tableau cible.

Le array paramètre est null.

Le index paramètre est inférieur à l’index minimal du tableau cible.

Exemples

L’exemple suivant montre comment copier le contenu d’un CodeAttributeArgumentCollection objet dans un CodeAttributeArgument tableau commençant par une valeur d’index spécifiée.

// Copies the contents of the collection beginning at index 0,
// to the specified CodeAttributeArgument array.
// 'arguments' is a CodeAttributeArgument array.
collection.CopyTo( arguments, 0 );
' Copies the contents of the collection beginning at index 0,
' to the specified CodeAttributeArgument array.
' 'arguments' is a CodeAttributeArgument array.
collection.CopyTo(arguments, 0)

S’applique à