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.

CodeTypeDeclarationCollection::CopyTo Method (array<CodeTypeDeclaration^>^, Int32)

 

Copies the elements in the CodeTypeDeclarationCollection object to a one-dimensional Array instance, starting at the specified index.

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

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

Parameters

array
Type: array<System.CodeDom::CodeTypeDeclaration^>^

The one-dimensional Array that is the destination of the values copied from the collection.

index
Type: System::Int32

The index of the array at which to begin inserting.

Exception Condition
ArgumentException

The destination array is multidimensional.

-or-

The number of elements in the CodeTypeDeclarationCollection is greater than the available space between the index of the target array specified by the index parameter and the end of the target array.

ArgumentNullException

The array parameter is null.

ArgumentOutOfRangeException

The index parameter is less than the target array's minimum index.

The following example demonstrates how to use the CopyTo method to copy the contents of a CodeTypeDeclarationCollection object to an array, starting at the specified index value.

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

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