NameValueCollection.CopyTo Method
Assembly: System (in system.dll)
public void CopyTo ( Array dest, int index )
public function CopyTo ( dest : Array, index : int )
Not applicable.
Parameters
- dest
The one-dimensional Array that is the destination of the elements copied from NameValueCollection. The Array must have zero-based indexing.
- index
The zero-based index in dest at which copying begins.
| Exception type | Condition |
|---|---|
| dest is a null reference (Nothing in Visual Basic). | |
| index is less than zero. | |
| dest is multidimensional. -or- index is equal to or greater than the length of dest. -or- The number of elements in the source NameValueCollection is greater than the available space from index to the end of the destination dest. | |
| The type of the source NameValueCollection cannot be cast automatically to the type of the destination dest. |
The specified array must be of a compatible type.
This method uses Array.Copy to copy the elements.
This method is an O(n) operation, where n is Count.
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.