DesignerVerbCollection.CopyTo メソッドとは何? わかりやすく解説 Weblio辞書 (original) (raw)

指定したインデックス開始位置として、指定した DesignerVerb 配列コレクション メンバコピーします

名前空間: System.ComponentModel.Design
アセンブリ: System (system.dll 内)
構文構文

Visual Basic (宣言)

Public Sub CopyTo ( _ array As DesignerVerb(), _ index As Integer _ )

Visual Basic (使用法)

Dim instance As DesignerVerbCollection Dim array As DesignerVerb() Dim index As Integer

instance.CopyTo(array, index)

C#

public void CopyTo ( DesignerVerb[] array, int index )

C++

public: void CopyTo ( array<DesignerVerb^>^ array, int index )

J#

public void CopyTo ( DesignerVerb[] array, int index )

JScript

public function CopyTo ( array : DesignerVerb[], index : int )

パラメータ

array

コレクション メンバコピー先の配列

index

コピー開始位置を示す、コピー先の配列内のインデックス

使用例使用例

Visual Basic

' Copies the contents of the collection, beginning at index 0, ' to the specified DesignerVerb array. ' 'verbs' is a DesignerVerb array. collection.CopyTo(verbs, 0)

C#

// Copies the contents of the collection, beginning at index 0, // to the specified DesignerVerb array. // 'verbs' is a DesignerVerb array. collection.CopyTo( verbs, 0 );

C++

// Copies the contents of the collection, beginning at index 0, // to the specified DesignerVerb array. // 'verbs' is a DesignerVerb array. collection->CopyTo( verbs, 0 );

プラットフォームプラットフォーム

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

開発プラットフォーム中には.NET Framework によってサポートされていないバージョンありますサポートされているバージョンについては、「システム要件」を参照してください

バージョン情報バージョン情報

.NET Framework
サポート対象 : 2.01.11.0

参照参照

関連項目
DesignerVerbCollection クラス
DesignerVerbCollection メンバ
System.ComponentModel.Design 名前空間