Dictionary<TKey, TValue>.Keys Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets a collection containing the keys in the Dictionary<TKey, TValue>.
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: System.Collections.Generic.Dictionary<TKey, TValue>.KeyCollectionA Dictionary<TKey, TValue>.KeyCollection containing the keys in the Dictionary<TKey, TValue>.
The order of the keys in the Dictionary<TKey, TValue>.KeyCollection is unspecified, but it is the same order as the associated values in the Dictionary<TKey, TValue>.ValueCollection returned by the Values property.
The returned Dictionary<TKey, TValue>.KeyCollection is not a static copy; instead, the Dictionary<TKey, TValue>.KeyCollection refers back to the keys in the original Dictionary<TKey, TValue>. Therefore, changes to the Dictionary<TKey, TValue> continue to be reflected in the Dictionary<TKey, TValue>.KeyCollection.
Getting the value of this property is an O(1) operation.
The following code example shows how to enumerate the keys in the dictionary using the Keys property, and how to enumerate the keys and values in the dictionary.
This code is part of a larger example that can be compiled and executed. See Dictionary<TKey, TValue>.
// To get the keys alone, use the Keys property. Dictionary<string, string>.KeyCollection keyColl = openWith.Keys; // The elements of the KeyCollection are strongly typed // with the type that was specified for dictionary keys. outputBlock.Text += "\n"; foreach (string s in keyColl) { outputBlock.Text += String.Format("Key = {0}", s) + "\n"; } ... // When you use foreach to enumerate dictionary elements, // the elements are retrieved as KeyValuePair objects. outputBlock.Text += "\n"; foreach (KeyValuePair<string, string> kvp in openWith) { outputBlock.Text += String.Format("Key = {0}, Value = {1}", kvp.Key, kvp.Value) + "\n"; }