StateManagedCollection.CopyTo(Array, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從特定的陣列索引開始,將 StateManagedCollection 集合的項目複製到陣列。
public:
virtual void CopyTo(Array ^ array, int index);
public void CopyTo (Array array, int index);
abstract member CopyTo : Array * int -> unit
override this.CopyTo : Array * int -> unit
Public Sub CopyTo (array As Array, index As Integer)
參數
- array
- Array
一維 Array,是從 StateManagedCollection 複製過來的項目之目的端。 Array 必須有以零為起始的索引。
- index
- Int32
array
中以零起始的索引,即開始複製的位置。
實作
例外狀況
array
為 null
。
index
小於零。
array
是多維的。
-或-
index
大於或等於 array
的長度。
-或-
來源 StateManagedCollection 中的項目數大於從 index
到目的 array
結尾的可用空間。
備註
指定的陣列必須是相容的類型。
這些元素會以列舉值逐一查看 Array 集合的相同順序複製到 StateManagedCollection。