ListView.ListViewItemCollection.CopyTo(Array, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將整個集合複製到現有陣列中的指定位置。
public:
virtual void CopyTo(Array ^ dest, int index);
public void CopyTo (Array dest, int index);
abstract member CopyTo : Array * int -> unit
override this.CopyTo : Array * int -> unit
Public Sub CopyTo (dest As Array, index As Integer)
參數
- index
- Int32
目的陣列中的位置,集合中的項目將複製到該處。
實作
備註
您可以使用這個方法,將多個集合中選取的專案合併成單一陣列。