CompilerErrorCollection::CopyTo Method (array<CompilerError^>^, Int32)
Copies the collection values to a one-dimensional Array instance at the specified index.
Assembly: System (in System.dll)
Parameters
- array
-
Type:
array<System.CodeDom.Compiler::CompilerError^>^
The one-dimensional Array that is the destination of the values copied from CompilerErrorCollection.
- index
-
Type:
System::Int32
The index in the array at which to start copying.
| Exception | Condition |
|---|---|
| ArgumentException | The array indicated by the array parameter is multidimensional. -or- The number of elements in the CompilerErrorCollection is greater than the available space between the index value of the arrayIndex parameter in the array indicated by the array parameter and the end of the array indicated by the array parameter. |
| ArgumentNullException | The array parameter is null. |
| ArgumentOutOfRangeException | The index parameter is less than the lowbound of the array indicated by the array parameter. |
The following example demonstrates how to use the CopyTo method to copy the contents of a CompilerErrorCollection to an array, starting at the specified index value.
Available since 1.1