Поделиться через


ServiceDescriptionFormatExtensionCollection.CopyTo(Object[], Int32) Метод

Определение

Целиком копирует коллекцию ServiceDescriptionFormatExtensionCollection в одномерный массив типа ServiceDescriptionFormatExtension, начиная с указанного индекса массива назначения (индекс начинается с нуля).

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)

Параметры

array
Object[]

Массив типа ServiceDescriptionFormatExtension, служащий в качестве места назначения при копировании.

index
Int32

Индекс (с нуля), начиная с которого будет выполнена вставка скопированной коллекции.

Примеры

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

Применяется к