다음을 통해 공유


ToolboxItemCollection.CopyTo(ToolboxItem[], Int32) 메서드

정의

지정된 대상 인덱스에서 시작하는 지정된 배열에 컬렉션을 복사합니다.

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

매개 변수

array
ToolboxItem[]

복사할 대상 배열입니다.

index
Int32

복사를 시작할 인덱스입니다.

예제

다음 코드 예제를 사용 하 여 보여 줍니다는 CopyTo 메서드는 합니다 ToolboxItemCollection.

// Copy the ToolboxItemCollection to the specified array.
array<ToolboxItem^>^items = gcnew array<ToolboxItem^>(collection->Count);
collection->CopyTo( items, 0 );
// Copy the ToolboxItemCollection to the specified array.
ToolboxItem[] items = new ToolboxItem[collection.Count];
collection.CopyTo( items, 0 );
' Copy the ToolboxItemCollection to the specified array.
Dim items(collection.Count) As ToolboxItem
collection.CopyTo(items, 0)

적용 대상