SortedDictionary<TKey,TValue>.ValueCollection Costruttore

Definizione

Inizializza una nuova istanza della classe SortedDictionary<TKey,TValue>.ValueCollection in cui sono riprodotti i valori dell'insieme SortedDictionary<TKey,TValue> specificato.

public:
 ValueCollection(System::Collections::Generic::SortedDictionary<TKey, TValue> ^ dictionary);
public ValueCollection (System.Collections.Generic.SortedDictionary<TKey,TValue> dictionary);
new System.Collections.Generic.SortedDictionary<'Key, 'Value>.ValueCollection : System.Collections.Generic.SortedDictionary<'Key, 'Value> -> System.Collections.Generic.SortedDictionary<'Key, 'Value>.ValueCollection
Public Sub New (dictionary As SortedDictionary(Of TKey, TValue))

Parametri

dictionary
SortedDictionary<TKey,TValue>

Insieme SortedDictionary<TKey,TValue> i cui valori sono riportati nel nuovo oggetto SortedDictionary<TKey,TValue>.ValueCollection.

Eccezioni

dictionary è null.

Commenti

Non SortedDictionary<TKey,TValue>.ValueCollection è una copia statica; invece, il SortedDictionary<TKey,TValue>.ValueCollection fa riferimento ai valori dell'originale SortedDictionary<TKey,TValue>. Pertanto, le modifiche apportate al continuano a essere riflesse nell'oggetto SortedDictionary<TKey,TValue>SortedDictionary<TKey,TValue>.ValueCollection.

Questo costruttore è un'operazione O(1).

Si applica a