CodeCommentStatementCollection.CopyTo(CodeCommentStatement[], Int32) メソッド

定義

指定した 1 次元の Array にコレクション オブジェクトをコピーします。コピー操作は、指定したインデックスから始まります。

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

パラメーター

array
CodeCommentStatement[]

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

index
Int32

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

例外

配列先が多次元です。

- または -

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

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

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

次の例では、 の CodeCommentStatementCollection 内容をインデックス値 0 から始まる配列にコピーする方法を示します。

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

適用対象

こちらもご覧ください