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