-
Notifications
You must be signed in to change notification settings - Fork 35
P_CodeJam_Collections_LazyDictionary_2_Keys
andrewvk edited this page Jul 1, 2016
·
5 revisions
Gets an enumerable collection that contains the keys in the read-only dictionary.
Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 1.1.0.0 (1.1.0.0)
C#
public IEnumerable<TKey> Keys { get; }
VB
Public ReadOnly Property Keys As IEnumerable(Of TKey)
Get
F#
abstract Keys : IEnumerable<'TKey> with get
override Keys : IEnumerable<'TKey> with get
Type: IEnumerable(TKey)
An enumerable collection that contains the keys in the read-only dictionary.
IReadOnlyDictionary(TKey, TValue).Keys
LazyDictionary(TKey, TValue) Class
CodeJam.Collections Namespace