using System; using System.Collections; using System.Collections.Generic; using Cpp2IlInjected; namespace System.Linq { /// Represents a collection of objects that have a common key. /// The type of the key of the . /// The type of the values in the . // Token: 0x02000041 RID: 65 [Token(Token = "0x2000041")] public interface IGrouping : IEnumerable, IEnumerable { /// Gets the key of the . /// The key of the . // Token: 0x17000043 RID: 67 // (get) Token: 0x0600021B RID: 539 [Token(Token = "0x17000043")] TKey Key { [Token(Token = "0x600021B")] [Address(Slot = "0")] get; } } }