Dictionary<TKey,TValue>.ICollection<KeyValuePair<TKey,TValue>>.CopyTo Método

Definição

Copia os elementos do ICollection<T> para uma matriz do tipo KeyValuePair<TKey,TValue>, começando no índice da matriz especificada.

 virtual void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(cli::array <System::Collections::Generic::KeyValuePair<TKey, TValue>> ^ array, int index) = System::Collections::Generic::ICollection<System::Collections::Generic::KeyValuePair<TKey, TValue>>::CopyTo;
void ICollection<KeyValuePair<TKey,TValue>>.CopyTo (System.Collections.Generic.KeyValuePair<TKey,TValue>[] array, int index);
abstract member System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo : System.Collections.Generic.KeyValuePair<'Key, 'Value>[] * int -> unit
override this.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo : System.Collections.Generic.KeyValuePair<'Key, 'Value>[] * int -> unit
Sub CopyTo (array As KeyValuePair(Of TKey, TValue)(), index As Integer) Implements ICollection(Of KeyValuePair(Of TKey, TValue)).CopyTo

Parâmetros

array
KeyValuePair<TKey,TValue>[]

A matriz unidimensional do tipo KeyValuePair<TKey,TValue> que é o destino dos elementos KeyValuePair<TKey,TValue> copiados da ICollection<T>. A matriz deve ter indexação com base em zero.

index
Int32

O índice com base em zero em array no qual a cópia começa.

Implementações

Exceções

array é null.

index é menor que 0.

O número de elementos na origem ICollection<T> é maior do que o espaço disponível de index até o final do array de destino.

Aplica-se a