SortedDictionary<TKey,TValue>.KeyCollection Costruttore

Definizione

Inizializza una nuova istanza della classe SortedDictionary<TKey,TValue>.KeyCollection in cui sono riprodotte le chiavi dell'oggetto SortedDictionary<TKey,TValue> specificato.

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

Parametri

dictionary
SortedDictionary<TKey,TValue>

Classe SortedDictionary<TKey,TValue> le cui chiavi vengono riprodotte nella nuova classe SortedDictionary<TKey,TValue>.KeyCollection.

Eccezioni

dictionary è null.

Commenti

Non SortedDictionary<TKey,TValue>.KeyCollection è una copia statica; invece, il SortedDictionary<TKey,TValue>.KeyCollection riferimento alle chiavi nell'originale SortedDictionary<TKey,TValue>. Pertanto, le modifiche apportate al continuano a essere riflesse nell'oggetto SortedDictionary<TKey,TValue>SortedDictionary<TKey,TValue>.KeyCollection.

Questo costruttore è un'operazione O(1).

Si applica a