using System; using System.Collections.Generic; using System.Text; namespace System.Linq { public interface IGrouping : IEnumerable { TKey Key { get; } } }