CodeStatementCollection.CopyTo(CodeStatement[], Int32) メソッド

定義

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

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

パラメーター

array
CodeStatement[]

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

index
Int32

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

例外

配列先が多次元です。

- または -

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

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

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

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

// Copies the contents of the collection beginning at index 0 to the specified CodeStatement array.
// 'statements' is a CodeStatement array.
collection->CopyTo( statements, 0 );
// Copies the contents of the collection beginning at index 0 to the specified CodeStatement array.
// 'statements' is a CodeStatement array.
CodeStatement[] statementArray = new CodeStatement[collection.Count];
collection.CopyTo( statementArray, 0 );
' Copies the contents of the collection beginning at index 0 to the specified CodeStatement array.
' 'statements' is a CodeStatement array.
Dim statementArray(collection.Count - 1) As CodeStatement
collection.CopyTo(statementArray, 0)

適用対象

こちらもご覧ください