Click or drag to resize

OrderedDictionaryTKey, TValueKeys Property

Gets an ICollection<TKey> object containing the keys in the OrderedDictionary<TKey,TValue>.

Namespace:  Ifs.Fnd.Core
Assembly:  Ifs.Fnd.Core (in Ifs.Fnd.Core.dll) Version: 4.52.10.0 (10.2.2.9999)
Syntax
C#
public ICollection<TKey> Keys { get; }

Property Value

Type: ICollectionTKey
An ICollection<TKey> object containing the keys in the OrderedDictionary<TKey,TValue>.

Implements

IDictionaryTKey, TValueKeys
Remarks
The returned ICollection<TKey> object is not a static copy; instead, the collection refers back to the keys in the original OrderedDictionary<TKey,TValue>. Therefore, changes to the OrderedDictionary<TKey,TValue> continue to be reflected in the key collection.
See Also