DictionaryBase.IDictionary.Keys Property
.NET Framework (current version)
Gets an ICollection object containing the keys in the DictionaryBase object.
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: System.Collections.ICollectionAn ICollection object containing the keys in the DictionaryBase object.
Implements
IDictionary.KeysThe order of the keys in the ICollection object is unspecified, but is the same order as the associated values in the ICollection object returned by the Values property.
The returned ICollection is not a static copy; instead, the ICollection refers back to the keys in the original DictionaryBase object. Therefore, changes to the DictionaryBase continue to be reflected in the returned ICollection.
Retrieving the value of this property is an O(1) operation.
Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Available since 10
.NET Framework
Available since 1.1
Show: