Sdílet prostřednictvím


ServiceDescriptionFormatExtensionCollection.CopyTo(Object[], Int32) Metoda

Definice

Zkopíruje celý ServiceDescriptionFormatExtensionCollection objekt do jednorozměrného pole typu ServiceDescriptionFormatExtension, počínaje zadaným indexem nuly cílového pole.

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)

Parametry

array
Object[]

Pole typu ServiceDescriptionFormatExtension sloužící jako cíl akce kopírování

index
Int32

Index založený na nule, na který chcete začít umístit zkopírovanou kolekci.

Příklady

// 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.")

Platí pro