HttpStaticObjectsCollection.CopyTo(Array, Int32) Méthode

Définition

Copie les membres d'un objet HttpStaticObjectsCollection dans un tableau.

public:
 virtual void CopyTo(Array ^ array, int index);
public void CopyTo (Array array, int index);
abstract member CopyTo : Array * int -> unit
override this.CopyTo : Array * int -> unit
Public Sub CopyTo (array As Array, index As Integer)

Paramètres

array
Array

Tableau dans lequel HttpStaticObjectsCollection est copié.

index
Int32

Membre de la collection où la copie commence.

Implémente

Exemples

L’exemple suivant crée un tableau Object de la taille requise et copie une collection existante StaticObjects dans celle-ci.

// Find the number of members in the StaticObjects collection.
int ObjCount = Application.StaticObjects.Count;
// Create an array of the same size.
Object[] MyObjArray = new Object[ObjCount];
// Copy the entire collection into the array.
Application.StaticObjects.CopyTo(MyObjArray, 0);
' Find the number of members in the StaticObjects collection.
Dim ObjCount As Integer = Application.StaticObjects.Count
' Create an array of the same size.
Dim MyObjArray(ObjCount) As Object
' Copy the entire collection into the array.
Application.StaticObjects.CopyTo(MyObjArray, 0)

S’applique à