mscorlib(4.0.0.0) API with additions
IGrouping.cs
1 using System.Collections;
3 
4 namespace System.Linq
5 {
9  [global::__DynamicallyInvokable]
10  public interface IGrouping<out TKey, out TElement> : IEnumerable<TElement>, IEnumerable
11  {
14  [global::__DynamicallyInvokable]
15  TKey Key
16  {
17  [global::__DynamicallyInvokable]
18  get;
19  }
20  }
21 }
Definition: __Canon.cs:3
TKey Key
Gets the key of the T:System.Linq.IGrouping`2.
Definition: IGrouping.cs:16
Represents a collection of objects that have a common key.
Definition: IGrouping.cs:10
Exposes an enumerator, which supports a simple iteration over a non-generic collection....
Definition: IEnumerable.cs:9