Compartir a través de


ServiceDescriptionFormatExtensionCollection.CopyTo(Object[], Int32) Método

Definición

Copia todo el objeto ServiceDescriptionFormatExtensionCollection en una matriz unidimensional de tipo ServiceDescriptionFormatExtension, a partir del índice de base cero especificado de la matriz de destino.

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

Parámetros

array
Object[]

Matriz de tipo ServiceDescriptionFormatExtension que actúa como destino de la operación de copia.

index
Int32

Índice de base cero en el que se comienza a insertar la colección copiada.

Ejemplos

// Copy elements of collection to an Object array.
array<Object^>^myObjectArray2 = gcnew array<Object^>(myCollection->Count);
myCollection->CopyTo( myObjectArray2, 0 );
Console::WriteLine( "Collection elements are copied to an object array." );
// Copy elements of collection to an Object array.
Object[] myObjectArray2 = new Object[myCollection.Count];
myCollection.CopyTo(myObjectArray2,0);
Console.WriteLine("Collection elements are copied to an object array.");
' Copy elements of collection to an Object array.
Dim myObjectArray2(myCollection.Count -1 ) As Object
myCollection.CopyTo(myObjectArray2, 0)
Console.WriteLine("Collection elements are copied to an object array.")

Se aplica a