mscorlib(4.0.0.0) API with additions
ILookup.cs
1 using System.Collections;
3 
4 namespace System.Linq
5 {
9  [global::__DynamicallyInvokable]
10  public interface ILookup<TKey, TElement> : IEnumerable<IGrouping<TKey, TElement>>, IEnumerable
11  {
14  [global::__DynamicallyInvokable]
15  int Count
16  {
17  [global::__DynamicallyInvokable]
18  get;
19  }
20 
24  [global::__DynamicallyInvokable]
25  IEnumerable<TElement> this[TKey key]
26  {
27  [global::__DynamicallyInvokable]
28  get;
29  }
30 
35  [global::__DynamicallyInvokable]
36  bool Contains(TKey key);
37  }
38 }
Definition: __Canon.cs:3
Exposes an enumerator, which supports a simple iteration over a non-generic collection....
Definition: IEnumerable.cs:9
bool Contains(TKey key)
Determines whether a specified key exists in the T:System.Linq.ILookup`2.
Defines an indexer, size property, and Boolean search method for data structures that map keys to T:S...
Definition: ILookup.cs:10
int Count
Gets the number of key/value collection pairs in the T:System.Linq.ILookup`2.
Definition: ILookup.cs:16