Interface IKeyedLookup<TKey, TElement>
Collection of facts grouped by a key. Exposes all keys present in the lookup as a Keys collection.
public interface IKeyedLookup<TKey, TElement> : ILookup<TKey, TElement>, IEnumerable<IGrouping<TKey, TElement>>, IEnumerable
Type Parameters
TKey
The type of the keys in the lookup.
TElement
The type of the elements in the lookup,
- Inherited Members
Properties
Keys
All keys present in the lookup. To find the number of keys in the lookup use Count.
IEnumerable<TKey> Keys { get; }
Property Value
- IEnumerable<TKey>