[This is preliminary documentation and is subject to change.]

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public ICollection<TKey> Keys { get; }
Visual Basic
Public ReadOnly Property Keys As ICollection(Of TKey)
	Get
Visual C++
public:
virtual property ICollection<TKey>^ Keys {
	ICollection<TKey>^ get () sealed;
}
F#
abstract Keys : ICollection<'TKey>
override Keys : ICollection<'TKey>
JScript
final function get Keys () : ICollection<TKey>

Return Value

An ICollection<(Of <(<'T>)>)> containing the keys of the object that implements IDictionary<(Of <(<'TKey, TValue>)>)>.

Implements

IDictionary<(Of <(<'TKey, TValue>)>)>..::..Keys

See Also