GraphLinkCollection.CopyTo, méthode
Copie les éléments de System.Collections.Generic.ICollection dans un System.Array, en commençant par un index particulier System.Array.
Espace de noms : Microsoft.VisualStudio.GraphModel
Assembly : Microsoft.VisualStudio.GraphModel (dans Microsoft.VisualStudio.GraphModel.dll)
Syntaxe
'Déclaration
Public Sub CopyTo ( _
array As GraphLink(), _
arrayIndex As Integer _
)
public void CopyTo(
GraphLink[] array,
int arrayIndex
)
public:
virtual void CopyTo(
array<GraphLink^>^ array,
int arrayIndex
) sealed
abstract CopyTo :
array:GraphLink[] *
arrayIndex:int -> unit
override CopyTo :
array:GraphLink[] *
arrayIndex:int -> unit
public final function CopyTo(
array : GraphLink[],
arrayIndex : int
)
Paramètres
- array
Type : array<Microsoft.VisualStudio.GraphModel.GraphLink[]
Le System.Array unidimensionnel qui constitue la destination des éléments copiés à partir de System.Collections.Generic.ICollection.System.Array doit avoir une indexation de base zéro.
- arrayIndex
Type : System.Int32
Index de base zéro du tableau à partir duquel commencer la copie.
Implémentations
ICollection<T>.CopyTo(array<T[], Int32)
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | le tableau a une valeur null |
ArgumentOutOfRangeException | arrayIndex est inférieur à 0. |
ArgumentException | le tableau est multidimensionnel. -ou- Le nombre d'éléments dans la source System.Collections.Generic.ICollection est supérieur à l'espace disponible de l'arrayIndex à la fin du tableau de destination. -ou-Le Type T ne peut pas être converti automatiquement en type du tableau de destination. |
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.