interface ILookup<TKey,TElement>
Defines an indexer, size property, and Boolean search method for data structures that map keys to sequences of values.
TKeyThe type of the keys in the .TElementThe type of the elements in the sequences that make up the values in the .
public int Count { get; }
Gets the number of key/value collection pairs in the .
- Returns The number of key/value collection pairs in the .
public bool Contains( TKey key )
😔 No documentation found.
public IEnumerable<TElement> Item { get; }
😔 No documentation found.