CodeExpressionCollection::CopyTo Method (array<CodeExpression^>^, Int32)
.NET Framework (current version)
Copies the collection objects to a one-dimensional Array instance beginning at the specified index.
Assembly: System (in System.dll)
Parameters
- array
-
Type:
array<System.CodeDom::CodeExpression^>^
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 CodeExpressionCollection 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 copy the contents of a CodeExpressionCollection to a CodeExpression array beginning at the index value 0.
.NET Framework
Available since 1.1
Available since 1.1
Show: