Dictionary<TKey,TValue>.KeyCollection Constructeur
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Initialise une nouvelle instance de la classe Dictionary<TKey,TValue>.KeyCollection qui reflète les clés dans le Dictionary<TKey,TValue> spécifié.
public:
KeyCollection(System::Collections::Generic::Dictionary<TKey, TValue> ^ dictionary);
public KeyCollection (System.Collections.Generic.Dictionary<TKey,TValue> dictionary);
new System.Collections.Generic.Dictionary<'Key, 'Value>.KeyCollection : System.Collections.Generic.Dictionary<'Key, 'Value> -> System.Collections.Generic.Dictionary<'Key, 'Value>.KeyCollection
Public Sub New (dictionary As Dictionary(Of TKey, TValue))
Paramètres
- dictionary
- Dictionary<TKey,TValue>
Dictionary<TKey,TValue> dont les clés sont reflétées dans le nouveau Dictionary<TKey,TValue>.KeyCollection.
Exceptions
dictionary
a la valeur null
.
Remarques
n’est Dictionary<TKey,TValue>.KeyCollection pas une copie statique ; au lieu de cela, le Dictionary<TKey,TValue>.KeyCollection fait référence aux clés dans l’original Dictionary<TKey,TValue>. Par conséquent, les modifications apportées au Dictionary<TKey,TValue> continuent d’être reflétées dans .Dictionary<TKey,TValue>.KeyCollection
Ce constructeur est une opération O(1).