CodeDirectiveCollection.CopyTo(CodeDirective[], Int32) Method

Definition

Copies the contents of the collection to a one-dimensional array beginning at the specified index.

public:
 void CopyTo(cli::array <System::CodeDom::CodeDirective ^> ^ array, int index);
public void CopyTo (System.CodeDom.CodeDirective[] array, int index);
member this.CopyTo : System.CodeDom.CodeDirective[] * int -> unit
Public Sub CopyTo (array As CodeDirective(), index As Integer)

Parameters

array
CodeDirective[]

An array of type CodeDirective that is the destination of the values copied from the collection.

index
Int32

The index in the array at which to begin inserting collection objects.

Exceptions

The destination array is multidimensional.

-or-

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

array is null.

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

Examples

The following code example shows the use of the CopyTo method to copy the contents of the collection beginning at index 0 to the specified CodeDirective array. This example is part of a larger example provided for the CodeDirectiveCollection class.

// Copies the contents of the collection beginning at index 0 to the specified CodeDirective array.
// 'directives' is a CodeDirective array.
collection.CopyTo(directives, 0);
' Copies the contents of the collection beginning at index 0 to the specified CodeDirective array.
' 'directives' is a CodeDirective array.
collection.CopyTo(directives, 0)

Applies to