CodeTypeDeclarationCollection.CopyTo(CodeTypeDeclaration[], Int32) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定されたインデックスを開始位置として、CodeTypeDeclarationCollection オブジェクトの要素を 1 次元 Array のインスタンスにコピーします。
public:
void CopyTo(cli::array <System::CodeDom::CodeTypeDeclaration ^> ^ array, int index);
public void CopyTo (System.CodeDom.CodeTypeDeclaration[] array, int index);
member this.CopyTo : System.CodeDom.CodeTypeDeclaration[] * int -> unit
Public Sub CopyTo (array As CodeTypeDeclaration(), index As Integer)
パラメーター
- array
- CodeTypeDeclaration[]
コレクションから値がコピーされる先の 1 次元の Array。
- index
- Int32
挿入の開始位置を示す、配列内のインデックス。
例外
配列先が多次元です。
- または -
CodeTypeDeclarationCollection 内の要素の数が、index
パラメーターで指定されたターゲット配列のインデックスからターゲット配列の末尾までの間にある使用可能な空間の大きさを超えています。
array
パラメーターが null
です。
index
パラメーターが、ターゲット配列の最小インデックスより小さい値です。
例
次の例では、 メソッドを CopyTo 使用して、オブジェクトの CodeTypeDeclarationCollection 内容を配列にコピーし、指定したインデックス値から始める方法を示します。
// Copies the contents of the collection, beginning at index 0,
// to the specified CodeTypeDeclaration array.
// 'declarations' is a CodeTypeDeclaration array.
collection->CopyTo( declarations, 0 );
// Copies the contents of the collection, beginning at index 0,
// to the specified CodeTypeDeclaration array.
// 'declarations' is a CodeTypeDeclaration array.
collection.CopyTo( declarations, 0 );
' Copies the contents of the collection, beginning at index 0,
' to the specified CodeTypeDeclaration array.
' 'declarations' is a CodeTypeDeclaration array.
collection.CopyTo(declarations, 0)
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET