using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Collections { /// Provides the base class for a strongly typed non-generic read-only collection. // Token: 0x020005C8 RID: 1480 [Token(Token = "0x20005C8")] [ComVisible(true)] [Serializable] public abstract class ReadOnlyCollectionBase : ICollection, IEnumerable { /// Gets the list of elements contained in the instance. /// An representing the instance itself. // Token: 0x170006CB RID: 1739 // (get) Token: 0x06002CC4 RID: 11460 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x170006CB")] protected ArrayList InnerList { [Token(Token = "0x6002CC4")] [Address(RVA = "0x2547E10", Offset = "0x2546C10", VA = "0x182547E10")] get { return null; } } /// Gets the number of elements contained in the instance. /// The number of elements contained in the instance. /// Retrieving the value of this property is an O(1) operation. // Token: 0x170006CC RID: 1740 // (get) Token: 0x06002CC5 RID: 11461 RVA: 0x00017718 File Offset: 0x00015918 [Token(Token = "0x170006CC")] public virtual int Count { [Token(Token = "0x6002CC5")] [Address(RVA = "0x2547D90", Offset = "0x2546B90", VA = "0x182547D90", Slot = "9")] get { return 0; } } /// Gets a value indicating whether access to a object is synchronized (thread safe). /// /// if access to the object is synchronized (thread safe); otherwise, . The default is . // Token: 0x170006CD RID: 1741 // (get) Token: 0x06002CC6 RID: 11462 RVA: 0x00017730 File Offset: 0x00015930 [Token(Token = "0x170006CD")] bool ICollection.IsSynchronized { [Token(Token = "0x6002CC6")] [Address(RVA = "0x2547C90", Offset = "0x2546A90", VA = "0x182547C90", Slot = "7")] get { return default(bool); } } /// Gets an object that can be used to synchronize access to a object. /// An object that can be used to synchronize access to the object. // Token: 0x170006CE RID: 1742 // (get) Token: 0x06002CC7 RID: 11463 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x170006CE")] object ICollection.SyncRoot { [Token(Token = "0x6002CC7")] [Address(RVA = "0x2547D10", Offset = "0x2546B10", VA = "0x182547D10", Slot = "6")] get { return null; } } /// Copies the entire to a compatible one-dimensional , starting at the specified index of the target array. /// The one-dimensional that is the destination of the elements copied from . The must have zero-based indexing. /// The zero-based index in at which copying begins. /// /// is . /// /// is less than zero. /// /// is multidimensional. /// -or- /// The number of elements in the source is greater than the available space from to the end of the destination . /// The type of the source cannot be cast automatically to the type of the destination . // Token: 0x06002CC8 RID: 11464 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002CC8")] [Address(RVA = "0x2547BF0", Offset = "0x25469F0", VA = "0x182547BF0", Slot = "4")] void ICollection.CopyTo(Array array, int index) { } /// Returns an enumerator that iterates through the instance. /// An for the instance. // Token: 0x06002CC9 RID: 11465 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x6002CC9")] [Address(RVA = "0x2547B70", Offset = "0x2546970", VA = "0x182547B70", Slot = "10")] public virtual IEnumerator GetEnumerator() { return null; } /// Initializes a new instance of the class. // Token: 0x06002CCA RID: 11466 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002CCA")] [Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")] protected ReadOnlyCollectionBase() { } // Token: 0x040019BF RID: 6591 [global::Cpp2IlInjected.FieldOffset(Offset = "0x10")] [Token(Token = "0x40019BF")] private ArrayList list; } }