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