interface ILookup<TKey,TElement>

in global :: System . Linq

Defines an indexer, size property, and Boolean search method for data structures that map keys to sequences of values.

  • TKey The type of the keys in the .
  • TElement The 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.