SortedDictionary<TKey,TValue>.KeyCollection Construtor

Definição

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

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).

Aplica-se a