次の方法で共有


ServiceDescriptionFormatExtensionCollection.CopyTo(Object[], Int32) メソッド

定義

ServiceDescriptionFormatExtensionCollection 全体を ServiceDescriptionFormatExtension 型の 1 次元配列にコピーします。コピー操作は、コピー先の配列の指定した 0 から始まるインデックス番号から始まります。

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

コピーされたコレクションの貼り付け開始位置を示す、0 から始まるインデックス番号。

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

適用対象