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: 0x0200003C RID: 60 [Token(Token = "0x200003C")] public interface IGrouping : IEnumerable, IEnumerable { /// Gets the key of the . /// The key of the . // Token: 0x17000036 RID: 54 // (get) Token: 0x060001E0 RID: 480 [Token(Token = "0x17000036")] TKey Key { [Token(Token = "0x60001E0")] [Address(Slot = "0")] get; } } }