DictionaryBase.CopyTo Method
Assembly: mscorlib (in mscorlib.dll)
public final void CopyTo ( Array array, int index )
public final function CopyTo ( array : Array, index : int )
Not applicable.
Parameters
- array
The one-dimensional Array that is the destination of the DictionaryEntry objects copied from the DictionaryBase instance. The Array must have zero-based indexing.
- index
The zero-based index in array at which copying begins.
| Exception type | Condition |
|---|---|
| array is a null reference (Nothing in Visual Basic). | |
| index is less than zero. | |
| array is multidimensional. -or- index is equal to or greater than the length of array. -or- The number of elements in the source DictionaryBase is greater than the available space from index to the end of the destination array. | |
| The type of the source DictionaryBase cannot be cast automatically to the type of the destination array. |
The elements are copied to the Array in the same order in which the enumerator iterates through the DictionaryBase.
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.