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