ImmutableSortedDictionary<TKey,TValue>.Builder.ICollection.CopyTo(Array, Int32) Método

Definição

Copia os elementos do dicionário em uma matriz, começando em um índice de matriz específico.Copies the elements of the dictionary to an array, starting at a particular array index.

Pacote NuGet: System.Collections.Immutable (sobre coleções imutáveis e como instalá-las)NuGet package: System.Collections.Immutable (about immutable collections and how to install)

 virtual void System.Collections.ICollection.CopyTo(Array ^ array, int index) = System::Collections::ICollection::CopyTo;
void ICollection.CopyTo (Array array, int index);
abstract member System.Collections.ICollection.CopyTo : Array * int -> unit
override this.System.Collections.ICollection.CopyTo : Array * int -> unit
Sub CopyTo (array As Array, index As Integer) Implements ICollection.CopyTo

Parâmetros

array
Array

A matriz unidimensional que é o destino dos elementos copiados do dicionário.The one-dimensional array that is the destination of the elements copied from the dictionary. A matriz deve ter indexação com base em zero.The array must have zero-based indexing.

index
Int32

O índice com base em zero em array no qual a cópia começa.The zero-based index in array at which copying begins.

Implementações

Comentários

Este membro é uma implementação do membro de interface explícita.This member is an explicit interface member implementation. Ele só pode ser usado quando a instância de ImmutableSortedDictionary<TKey,TValue>.Builder é convertida em uma interface de ICollection.It can be used only when the ImmutableSortedDictionary<TKey,TValue>.Builder instance is cast to an ICollection interface.

Aplica-se a