using System;
using Cpp2IlInjected;
namespace System.Collections.Specialized
{
/// Represents a collection of strings.
// Token: 0x02000341 RID: 833
[Token(Token = "0x2000341")]
[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: 0x17000483 RID: 1155
[Token(Token = "0x17000483")]
public string this[int index]
{
[Token(Token = "0x60015CA")]
[Address(RVA = "0x4A8010", Offset = "0x4A6E10", VA = "0x1804A8010")]
get
{
return null;
}
[Token(Token = "0x60015CB")]
[Address(RVA = "0x4A8180", Offset = "0x4A6F80", VA = "0x1804A8180")]
set
{
}
}
/// Gets the number of strings contained in the .
/// The number of strings contained in the .
// Token: 0x17000484 RID: 1156
// (get) Token: 0x060015CC RID: 5580 RVA: 0x00009A20 File Offset: 0x00007C20
[Token(Token = "0x17000484")]
public int Count
{
[Token(Token = "0x60015CC")]
[Address(RVA = "0x4A64A0", Offset = "0x4A52A0", VA = "0x1804A64A0", 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: 0x17000485 RID: 1157
// (get) Token: 0x060015CD RID: 5581 RVA: 0x00009A38 File Offset: 0x00007C38
[Token(Token = "0x17000485")]
bool IList.IsReadOnly
{
[Token(Token = "0x60015CD")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", 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: 0x17000486 RID: 1158
// (get) Token: 0x060015CE RID: 5582 RVA: 0x00009A50 File Offset: 0x00007C50
[Token(Token = "0x17000486")]
bool IList.IsFixedSize
{
[Token(Token = "0x60015CE")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", 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: 0x060015CF RID: 5583 RVA: 0x00009A68 File Offset: 0x00007C68
[Token(Token = "0x60015CF")]
[Address(RVA = "0x4A7BD0", Offset = "0x4A69D0", VA = "0x1804A7BD0")]
public int Add(string value)
{
return 0;
}
/// Removes all the strings from the .
// Token: 0x060015D0 RID: 5584 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015D0")]
[Address(RVA = "0x4A7C00", Offset = "0x4A6A00", VA = "0x1804A7C00", 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: 0x060015D1 RID: 5585 RVA: 0x00009A80 File Offset: 0x00007C80
[Token(Token = "0x60015D1")]
[Address(RVA = "0x4A7C30", Offset = "0x4A6A30", VA = "0x1804A7C30")]
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: 0x060015D2 RID: 5586 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015D2")]
[Address(RVA = "0x4A7C60", Offset = "0x4A6A60", VA = "0x1804A7C60")]
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: 0x060015D3 RID: 5587 RVA: 0x00009A98 File Offset: 0x00007C98
[Token(Token = "0x60015D3")]
[Address(RVA = "0x4A7C90", Offset = "0x4A6A90", VA = "0x1804A7C90")]
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: 0x060015D4 RID: 5588 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015D4")]
[Address(RVA = "0x4A7CC0", Offset = "0x4A6AC0", VA = "0x1804A7CC0")]
public void Insert(int index, string value)
{
}
/// Gets a value indicating whether access to the is synchronized (thread safe).
/// This property always returns .
// Token: 0x17000487 RID: 1159
// (get) Token: 0x060015D5 RID: 5589 RVA: 0x00009AB0 File Offset: 0x00007CB0
[Token(Token = "0x17000487")]
public bool IsSynchronized
{
[Token(Token = "0x60015D5")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", 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: 0x060015D6 RID: 5590 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015D6")]
[Address(RVA = "0x4A7D20", Offset = "0x4A6B20", VA = "0x1804A7D20")]
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: 0x060015D7 RID: 5591 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015D7")]
[Address(RVA = "0x4A7CF0", Offset = "0x4A6AF0", VA = "0x1804A7CF0", 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: 0x17000488 RID: 1160
// (get) Token: 0x060015D8 RID: 5592 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000488")]
public object SyncRoot
{
[Token(Token = "0x60015D8")]
[Address(RVA = "0x4A64D0", Offset = "0x4A52D0", VA = "0x1804A64D0", 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: 0x17000489 RID: 1161
[Token(Token = "0x17000489")]
object IList.this[int index]
{
[Token(Token = "0x60015D9")]
[Address(RVA = "0x4A8010", Offset = "0x4A6E10", VA = "0x1804A8010", Slot = "4")]
get
{
return null;
}
[Token(Token = "0x60015DA")]
[Address(RVA = "0x4A8090", Offset = "0x4A6E90", VA = "0x1804A8090", 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: 0x060015DB RID: 5595 RVA: 0x00009AC8 File Offset: 0x00007CC8
[Token(Token = "0x60015DB")]
[Address(RVA = "0x4A7D80", Offset = "0x4A6B80", VA = "0x1804A7D80", 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: 0x060015DC RID: 5596 RVA: 0x00009AE0 File Offset: 0x00007CE0
[Token(Token = "0x60015DC")]
[Address(RVA = "0x4A7E00", Offset = "0x4A6C00", VA = "0x1804A7E00", 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: 0x060015DD RID: 5597 RVA: 0x00009AF8 File Offset: 0x00007CF8
[Token(Token = "0x60015DD")]
[Address(RVA = "0x4A7E80", Offset = "0x4A6C80", VA = "0x1804A7E80", 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: 0x060015DE RID: 5598 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015DE")]
[Address(RVA = "0x4A7F00", Offset = "0x4A6D00", VA = "0x1804A7F00", 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: 0x060015DF RID: 5599 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015DF")]
[Address(RVA = "0x4A7F90", Offset = "0x4A6D90", VA = "0x1804A7F90", 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: 0x060015E0 RID: 5600 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015E0")]
[Address(RVA = "0x4A7C60", Offset = "0x4A6A60", VA = "0x1804A7C60", Slot = "15")]
void ICollection.CopyTo(Array array, int index)
{
}
/// Returns a that iterates through the .
/// A for the .
// Token: 0x060015E1 RID: 5601 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60015E1")]
[Address(RVA = "0x4A7D50", Offset = "0x4A6B50", VA = "0x1804A7D50", Slot = "19")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
/// Initializes a new instance of the class.
// Token: 0x060015E2 RID: 5602 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015E2")]
[Address(RVA = "0x4A8120", Offset = "0x4A6F20", VA = "0x1804A8120")]
public StringCollection()
{
}
// Token: 0x04000E44 RID: 3652
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000E44")]
private ArrayList data;
}
}