ListBox.SelectedObjectCollection.CopyTo(Array, Int32) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
배열 내의 지정된 위치에서 기존 배열로 전체 컬렉션을 복사합니다.
public:
virtual void CopyTo(Array ^ dest, int index);
public:
virtual void CopyTo(Array ^ destination, int index);
public void CopyTo (Array dest, int index);
public void CopyTo (Array destination, int index);
abstract member CopyTo : Array * int -> unit
override this.CopyTo : Array * int -> unit
abstract member CopyTo : Array * int -> unit
override this.CopyTo : Array * int -> unit
Public Sub CopyTo (dest As Array, index As Integer)
Public Sub CopyTo (destination As Array, index As Integer)
매개 변수
- destdestination
- Array
컬렉션의 콘텐츠를 복사할 대상 배열입니다.
- index
- Int32
컬렉션에서 항목을 복사할 대상 배열 내의 위치입니다.
구현
설명
이 메서드를 사용하여 여러 컬렉션에서 선택한 항목을 단일 배열로 결합할 수 있습니다.