SortedDictionary<TKey,TValue>.KeyCollection Constructeur

Définition

Initialise une nouvelle instance de la classe SortedDictionary<TKey,TValue>.KeyCollection qui reflète les clés dans le SortedDictionary<TKey,TValue> spécifié.

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

Paramètres

Exceptions

dictionary a la valeur null.

Remarques

n’est SortedDictionary<TKey,TValue>.KeyCollection pas une copie statique ; au lieu de cela, le SortedDictionary<TKey,TValue>.KeyCollection fait référence aux clés dans l’original SortedDictionary<TKey,TValue>. Par conséquent, les modifications apportées au SortedDictionary<TKey,TValue> continuent d’être reflétées dans .SortedDictionary<TKey,TValue>.KeyCollection

Ce constructeur est une opération O(1).

S’applique à