using System; using System.Collections.Generic; using System.Text; using System.Collections.ObjectModel; namespace System.Linq { internal class Grouping : ReadOnlyCollection, IGrouping { internal IList InnerList { get { return this.Items; } } public TKey Key { get; private set; } public Grouping (TKey key) : base (new List()) { Key = key; } } }