DictionaryBase.CopyTo(Array, Int32) Method

Definition

Copies the DictionaryBase elements to a one-dimensional Array at the specified index.

public:
 virtual void CopyTo(Array ^ array, int index);
public void CopyTo (Array array, int index);
abstract member CopyTo : Array * int -> unit
override this.CopyTo : Array * int -> unit
Public Sub CopyTo (array As Array, index As Integer)

Parameters

array
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
Int32

The zero-based index in array at which copying begins.

Implements

Exceptions

array is null.

index is less than zero.

array is multidimensional.

-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.

Remarks

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.

Applies to

See also