using System; using Cpp2IlInjected; namespace System.Collections.Specialized { /// Represents a collection of strings. // Token: 0x0200033D RID: 829 [Token(Token = "0x200033D")] [Serializable] public class StringCollection : IList, ICollection, IEnumerable { /// Gets or sets the element at the specified index. /// The zero-based index of the entry to get or set. /// The element at the specified index. /// /// is less than zero. /// -or- /// is equal to or greater than . // Token: 0x1700047F RID: 1151 [Token(Token = "0x1700047F")] public string this[int index] { [Token(Token = "0x60015B4")] [Address(RVA = "0xBA4AF0", Offset = "0xBA3AF0", VA = "0x180BA4AF0")] get { return null; } [Token(Token = "0x60015B5")] [Address(RVA = "0xBA4C60", Offset = "0xBA3C60", VA = "0x180BA4C60")] set { } } /// Gets the number of strings contained in the . /// The number of strings contained in the . // Token: 0x17000480 RID: 1152 // (get) Token: 0x060015B6 RID: 5558 RVA: 0x00009A08 File Offset: 0x00007C08 [Token(Token = "0x17000480")] public int Count { [Token(Token = "0x60015B6")] [Address(RVA = "0x478810", Offset = "0x477810", VA = "0x180478810", Slot = "16")] get { return 0; } } /// Gets a value indicating whether the object is read-only. /// /// if the object is read-only; otherwise, . The default is . // Token: 0x17000481 RID: 1153 // (get) Token: 0x060015B7 RID: 5559 RVA: 0x00009A20 File Offset: 0x00007C20 [Token(Token = "0x17000481")] bool IList.IsReadOnly { [Token(Token = "0x60015B7")] [Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", Slot = "9")] get { return default(bool); } } /// Gets a value indicating whether the object has a fixed size. /// /// if the object has a fixed size; otherwise, . The default is . // Token: 0x17000482 RID: 1154 // (get) Token: 0x060015B8 RID: 5560 RVA: 0x00009A38 File Offset: 0x00007C38 [Token(Token = "0x17000482")] bool IList.IsFixedSize { [Token(Token = "0x60015B8")] [Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", Slot = "10")] get { return default(bool); } } /// Adds a string to the end of the . /// The string to add to the end of the . The value can be . /// The zero-based index at which the new element is inserted. // Token: 0x060015B9 RID: 5561 RVA: 0x00009A50 File Offset: 0x00007C50 [Token(Token = "0x60015B9")] [Address(RVA = "0xBA4710", Offset = "0xBA3710", VA = "0x180BA4710")] public int Add(string value) { return 0; } /// Removes all the strings from the . // Token: 0x060015BA RID: 5562 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60015BA")] [Address(RVA = "0x4DA930", Offset = "0x4D9930", VA = "0x1804DA930", Slot = "8")] public void Clear() { } /// Determines whether the specified string is in the . /// The string to locate in the . The value can be . /// /// if is found in the ; otherwise, . // Token: 0x060015BB RID: 5563 RVA: 0x00009A68 File Offset: 0x00007C68 [Token(Token = "0x60015BB")] [Address(RVA = "0xBA4740", Offset = "0xBA3740", VA = "0x180BA4740")] public bool Contains(string value) { return default(bool); } /// Copies the entire values to a one-dimensional array of strings, starting at the specified index of the target array. /// The one-dimensional array of strings 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: 0x060015BC RID: 5564 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60015BC")] [Address(RVA = "0xBA4770", Offset = "0xBA3770", VA = "0x180BA4770")] public void CopyTo(string[] array, int index) { } /// Searches for the specified string and returns the zero-based index of the first occurrence within the . /// The string to locate. The value can be . /// The zero-based index of the first occurrence of in the , if found; otherwise, -1. // Token: 0x060015BD RID: 5565 RVA: 0x00009A80 File Offset: 0x00007C80 [Token(Token = "0x60015BD")] [Address(RVA = "0xBA47A0", Offset = "0xBA37A0", VA = "0x180BA47A0")] public int IndexOf(string value) { return 0; } /// Inserts a string into the at the specified index. /// The zero-based index at which is inserted. /// The string to insert. The value can be . /// /// is less than zero. /// -or- /// greater than . // Token: 0x060015BE RID: 5566 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60015BE")] [Address(RVA = "0xBA47D0", Offset = "0xBA37D0", VA = "0x180BA47D0")] public void Insert(int index, string value) { } /// Gets a value indicating whether access to the is synchronized (thread safe). /// This property always returns . // Token: 0x17000483 RID: 1155 // (get) Token: 0x060015BF RID: 5567 RVA: 0x00009A98 File Offset: 0x00007C98 [Token(Token = "0x17000483")] public bool IsSynchronized { [Token(Token = "0x60015BF")] [Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", Slot = "18")] get { return default(bool); } } /// Removes the first occurrence of a specific string from the . /// The string to remove from the . The value can be . // Token: 0x060015C0 RID: 5568 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60015C0")] [Address(RVA = "0xBA4800", Offset = "0xBA3800", VA = "0x180BA4800")] public void Remove(string value) { } /// Removes the string at the specified index of the . /// The zero-based index of the string to remove. /// /// is less than zero. /// -or- /// is equal to or greater than . // Token: 0x060015C1 RID: 5569 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60015C1")] [Address(RVA = "0x8AC2C0", Offset = "0x8AB2C0", VA = "0x1808AC2C0", Slot = "14")] public void RemoveAt(int index) { } /// Gets an object that can be used to synchronize access to the . /// An object that can be used to synchronize access to the . // Token: 0x17000484 RID: 1156 // (get) Token: 0x060015C2 RID: 5570 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000484")] public object SyncRoot { [Token(Token = "0x60015C2")] [Address(RVA = "0x8AC2F0", Offset = "0x8AB2F0", VA = "0x1808AC2F0", Slot = "17")] get { return null; } } /// Gets or sets the element at the specified index. /// The zero-based index of the element to get or set. /// The element at the specified index. /// /// is less than zero. /// -or- /// is equal to or greater than . // Token: 0x17000485 RID: 1157 [Token(Token = "0x17000485")] object IList.this[int index] { [Token(Token = "0x60015C3")] [Address(RVA = "0xBA4AF0", Offset = "0xBA3AF0", VA = "0x180BA4AF0", Slot = "4")] get { return null; } [Token(Token = "0x60015C4")] [Address(RVA = "0xBA4B70", Offset = "0xBA3B70", VA = "0x180BA4B70", Slot = "5")] set { } } /// Adds an object to the end of the . /// The to be added to the end of the . The value can be . /// The index at which the has been added. /// The is read-only. /// -or- /// The has a fixed size. // Token: 0x060015C5 RID: 5573 RVA: 0x00009AB0 File Offset: 0x00007CB0 [Token(Token = "0x60015C5")] [Address(RVA = "0xBA4860", Offset = "0xBA3860", VA = "0x180BA4860", Slot = "6")] int IList.Add(object value) { return 0; } /// Determines whether an element is in the . /// The to locate in the . The value can be . /// /// if is found in the ; otherwise, . // Token: 0x060015C6 RID: 5574 RVA: 0x00009AC8 File Offset: 0x00007CC8 [Token(Token = "0x60015C6")] [Address(RVA = "0xBA48E0", Offset = "0xBA38E0", VA = "0x180BA48E0", Slot = "7")] bool IList.Contains(object value) { return default(bool); } /// Searches for the specified and returns the zero-based index of the first occurrence within the entire . /// The to locate in the . The value can be . /// The zero-based index of the first occurrence of within the entire , if found; otherwise, -1. // Token: 0x060015C7 RID: 5575 RVA: 0x00009AE0 File Offset: 0x00007CE0 [Token(Token = "0x60015C7")] [Address(RVA = "0xBA4960", Offset = "0xBA3960", VA = "0x180BA4960", Slot = "11")] int IList.IndexOf(object value) { return 0; } /// Inserts an element into the at the specified index. /// The zero-based index at which should be inserted. /// The to insert. The value can be . /// /// is less than zero. /// -or- /// is greater than . /// The is read-only. /// -or- /// The has a fixed size. // Token: 0x060015C8 RID: 5576 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60015C8")] [Address(RVA = "0xBA49E0", Offset = "0xBA39E0", VA = "0x180BA49E0", Slot = "12")] void IList.Insert(int index, object value) { } /// Removes the first occurrence of a specific object from the . /// The to remove from the . The value can be . /// The is read-only. /// -or- /// The has a fixed size. // Token: 0x060015C9 RID: 5577 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60015C9")] [Address(RVA = "0xBA4A70", Offset = "0xBA3A70", VA = "0x180BA4A70", Slot = "13")] void IList.Remove(object value) { } /// 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: 0x060015CA RID: 5578 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60015CA")] [Address(RVA = "0xBA4770", Offset = "0xBA3770", VA = "0x180BA4770", Slot = "15")] void ICollection.CopyTo(Array array, int index) { } /// Returns a that iterates through the . /// A for the . // Token: 0x060015CB RID: 5579 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60015CB")] [Address(RVA = "0xBA4830", Offset = "0xBA3830", VA = "0x180BA4830", Slot = "19")] IEnumerator IEnumerable.GetEnumerator() { return null; } /// Initializes a new instance of the class. // Token: 0x060015CC RID: 5580 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60015CC")] [Address(RVA = "0xBA4C00", Offset = "0xBA3C00", VA = "0x180BA4C00")] public StringCollection() { } // Token: 0x04000E37 RID: 3639 [FieldOffset(Offset = "0x10")] [Token(Token = "0x4000E37")] private ArrayList data; } }