SortedList<TKey,TValue>.ICollection<KeyValuePair<TKey,TValue>>.CopyTo Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Copia os elementos do ICollection<T> para um Array, começando em um determinado índice Array.
virtual void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(cli::array <System::Collections::Generic::KeyValuePair<TKey, TValue>> ^ array, int arrayIndex) = 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 arrayIndex);
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)(), arrayIndex As Integer) Implements ICollection(Of KeyValuePair(Of TKey, TValue)).CopyTo
Parâmetros
- array
- KeyValuePair<TKey,TValue>[]
O Array unidimensional que é o destino dos elementos copiados de ICollection<T>. O Array deve ter indexação com base em zero.
- arrayIndex
- Int32
O índice com base em zero em array
no qual a cópia começa.
Implementações
Exceções
array
é null
.
arrayIndex
é menor que zero.
O número de elementos na origem ICollection<T> é maior do que o espaço disponível de arrayIndex
até o final do array
de destino.