CodeTypeMemberCollection.CopyTo(CodeTypeMember[], Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將集合物件複製到一維 Array 執行個體,開始於指定的索引。
public:
void CopyTo(cli::array <System::CodeDom::CodeTypeMember ^> ^ array, int index);
public void CopyTo (System.CodeDom.CodeTypeMember[] array, int index);
member this.CopyTo : System.CodeDom.CodeTypeMember[] * int -> unit
Public Sub CopyTo (array As CodeTypeMember(), index As Integer)
參數
- array
- CodeTypeMember[]
一維 Array,是從集合複製之值的目的端。
- index
- Int32
要開始插入的陣列索引。
例外狀況
array
參數為 null
。
index
參數小於目標陣列的最小索引。
範例
下列程式代碼範例示範如何從指定的索引值開始,將 的內容 CodeTypeMemberCollection 複製到陣列。
// Copies the contents of the collection, beginning at index 0,
// to the specified CodeTypeMember array.
// 'members' is a CodeTypeMember array.
collection->CopyTo( members, 0 );
// Copies the contents of the collection, beginning at index 0,
// to the specified CodeTypeMember array.
// 'members' is a CodeTypeMember array.
collection.CopyTo( members, 0 );
' Copies the contents of the collection, beginning at index 0,
' to the specified CodeTypeMember array.
' 'members' is a CodeTypeMember array.
collection.CopyTo(members, 0)