-
Notifications
You must be signed in to change notification settings - Fork 35
P_CodeJam_Collections_LazyDictionary_2_Keys
Andrew Koryavchenko edited this page Jun 17, 2018
·
5 revisions
Gets an enumerable collection that contains the keys in the read-only dictionary.
Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 2.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