CodeAttributeArgumentCollection.CopyTo(CodeAttributeArgument[], Int32) メソッド

定義

指定したインデックスをコピー開始位置として、1 次元の Array インスタンスにコレクション オブジェクトをコピーします。

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

パラメーター

array
CodeAttributeArgument[]

コレクションから値がコピーされる先の 1 次元の Array

index
Int32

挿入の開始位置を示す、配列内のインデックス。

例外

配列先が多次元です。

- または -

CodeAttributeArgumentCollection 内の要素の数が、index パラメーターで指定されたターゲット配列のインデックスからターゲット配列の末尾までの間にある使用可能な空間の大きさを超えています。

array パラメーターが null です。

index パラメーターが、ターゲット配列の最小インデックスより小さい値です。

次の例では、オブジェクトの CodeAttributeArgumentCollection 内容を、指定したインデックス値から始まる配列にコピーする CodeAttributeArgument 方法を示します。

// Copies the contents of the collection beginning at index 0,
// to the specified CodeAttributeArgument array.
// 'arguments' is a CodeAttributeArgument array.
collection->CopyTo( arguments, 0 );
// Copies the contents of the collection beginning at index 0,
// to the specified CodeAttributeArgument array.
// 'arguments' is a CodeAttributeArgument array.
collection.CopyTo( arguments, 0 );
' Copies the contents of the collection beginning at index 0,
' to the specified CodeAttributeArgument array.
' 'arguments' is a CodeAttributeArgument array.
collection.CopyTo(arguments, 0)

適用対象