Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

CompilerErrorCollection::CopyTo Method (array<CompilerError^>^, Int32)

 

Copies the collection values to a one-dimensional Array instance at the specified index.

Namespace:   System.CodeDom.Compiler
Assembly:  System (in System.dll)

public:
void CopyTo(
	array<CompilerError^>^ array,
	int index
)

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.

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

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft