Dictionary<TKey,TValue>.KeyCollection Construtor
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.
Inicializa uma nova instância da classe Dictionary<TKey,TValue>.KeyCollection que reflete as chaves no Dictionary<TKey,TValue> especificado.
public:
KeyCollection(System::Collections::Generic::Dictionary<TKey, TValue> ^ dictionary);
public KeyCollection (System.Collections.Generic.Dictionary<TKey,TValue> dictionary);
new System.Collections.Generic.Dictionary<'Key, 'Value>.KeyCollection : System.Collections.Generic.Dictionary<'Key, 'Value> -> System.Collections.Generic.Dictionary<'Key, 'Value>.KeyCollection
Public Sub New (dictionary As Dictionary(Of TKey, TValue))
Parâmetros
- dictionary
- Dictionary<TKey,TValue>
O Dictionary<TKey,TValue> cujas chaves são refletidas no novo Dictionary<TKey,TValue>.KeyCollection.
Exceções
dictionary
é null
.
Comentários
O Dictionary<TKey,TValue>.KeyCollection não é uma cópia estática; em vez disso, o Dictionary<TKey,TValue>.KeyCollection faz referência às chaves no original Dictionary<TKey,TValue>. Portanto, as alterações no Dictionary<TKey,TValue> continuam a ser refletidas no Dictionary<TKey,TValue>.KeyCollection.
Este construtor é uma operação O(1).