CodeStatementCollection.CopyTo(CodeStatement[], Int32) Method

Definition

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

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

Parameters

array
CodeStatement[]

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

index
Int32

The index of the array at which to begin inserting.

Exceptions

The destination array is multidimensional.

-or-

The number of elements in the CodeStatementCollection 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.

The array parameter is null.

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

Examples

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

// Copies the contents of the collection beginning at index 0 to the specified CodeStatement array.
// 'statements' is a CodeStatement array.
collection->CopyTo( statements, 0 );
// Copies the contents of the collection beginning at index 0 to the specified CodeStatement array.
// 'statements' is a CodeStatement array.
CodeStatement[] statementArray = new CodeStatement[collection.Count];
collection.CopyTo( statementArray, 0 );
' Copies the contents of the collection beginning at index 0 to the specified CodeStatement array.
' 'statements' is a CodeStatement array.
Dim statementArray(collection.Count - 1) As CodeStatement
collection.CopyTo(statementArray, 0)

Applies to

See also