CodeParameterDeclarationExpressionCollection.CopyTo Method
Assembly: System (in system.dll)
public void CopyTo ( CodeParameterDeclarationExpression[] array, int index )
public function CopyTo ( array : CodeParameterDeclarationExpression[], index : int )
Not applicable.
Parameters
- array
The one-dimensional Array that is the destination of the values copied from the collection.
- index
The index of the array at which to begin inserting.
| Exception type | Condition |
|---|---|
| The destination array is multidimensional. -or- The number of elements in the CodeParameterDeclarationExpressionCollection 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 a null reference (Nothing in Visual Basic). | |
| The index parameter is less than the target array's minimum index. |
The following example demonstrates how to copy the contents of a CodeParameterDeclarationExpressionCollection to an Array beginning at the specified index value.
// Copies the contents of the collection beginning at index 0 to the specified CodeParameterDeclarationExpression array. // 'parameters' is a CodeParameterDeclarationExpression array. collection.CopyTo( parameters, 0 );
// Copies the contents of the collection beginning at index 0 to // the specified CodeParameterDeclarationExpression array. // 'parameters' is a CodeParameterDeclarationExpression array. collection.CopyTo(parameters, 0);
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.