using System; using System.Runtime.CompilerServices; using Cpp2IlInjected; namespace System.Collections.Generic { /// Represents a strongly-typed, read-only collection of elements. /// The type of the elements. // Token: 0x02000632 RID: 1586 [Token(Token = "0x2000632")] [TypeDependency("System.SZArrayHelper")] public interface IReadOnlyCollection : IEnumerable, IEnumerable { /// Gets the number of elements in the collection. /// The number of elements in the collection. // Token: 0x170007CF RID: 1999 // (get) Token: 0x06003127 RID: 12583 [Token(Token = "0x170007CF")] int Count { [Token(Token = "0x6003127")] [Address(Slot = "0")] get; } } }