using System; using System.Diagnostics; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Collections.Generic { /// Represents a doubly linked list. /// Specifies the element type of the linked list. // Token: 0x02000348 RID: 840 [Token(Token = "0x2000348")] [DebuggerDisplay("Count = {Count}")] [DebuggerTypeProxy(typeof(ICollectionDebugView<>))] [Serializable] public class LinkedList : ICollection, IEnumerable, IEnumerable, ICollection, IReadOnlyCollection, ISerializable, IDeserializationCallback { /// Initializes a new instance of the class that is empty. // Token: 0x060015EB RID: 5611 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60015EB")] [Address(RVA = "0x118F5A0", Offset = "0x118E3A0", VA = "0x18118F5A0")] public LinkedList() { } /// Initializes a new instance of the class that is serializable with the specified and . /// A object containing the information required to serialize the . /// A object containing the source and destination of the serialized stream associated with the . // Token: 0x060015EC RID: 5612 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60015EC")] [Address(RVA = "0x1D64B30", Offset = "0x1D63930", VA = "0x181D64B30")] protected LinkedList(SerializationInfo info, StreamingContext context) { } /// Gets the number of nodes actually contained in the . /// The number of nodes actually contained in the . // Token: 0x1700048C RID: 1164 // (get) Token: 0x060015ED RID: 5613 RVA: 0x00009B10 File Offset: 0x00007D10 [Token(Token = "0x1700048C")] public int Count { [Token(Token = "0x60015ED")] [Address(RVA = "0x40B720", Offset = "0x40A520", VA = "0x18040B720", Slot = "17")] get { return 0; } } /// Gets the first node of the . /// The first of the . // Token: 0x1700048D RID: 1165 // (get) Token: 0x060015EE RID: 5614 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700048D")] public LinkedListNode First { [Token(Token = "0x60015EE")] [Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")] get { return null; } } /// Gets the last node of the . /// The last of the . // Token: 0x1700048E RID: 1166 // (get) Token: 0x060015EF RID: 5615 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700048E")] public LinkedListNode Last { [Token(Token = "0x60015EF")] [Address(RVA = "0x1D67680", Offset = "0x1D66480", VA = "0x181D67680")] get { return null; } } // Token: 0x1700048F RID: 1167 // (get) Token: 0x060015F0 RID: 5616 RVA: 0x00009B28 File Offset: 0x00007D28 [Token(Token = "0x1700048F")] bool ICollection.IsReadOnly { [Token(Token = "0x60015F0")] [Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "5")] get { return default(bool); } } // Token: 0x060015F1 RID: 5617 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60015F1")] [Address(RVA = "0x1D66A60", Offset = "0x1D65860", VA = "0x181D66A60", Slot = "6")] void ICollection.Add(T value) { } /// Adds a new node containing the specified value after the specified existing node in the . /// The after which to insert a new containing . /// The value to add to the . /// The new containing . /// /// is . /// /// is not in the current . // Token: 0x060015F2 RID: 5618 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60015F2")] [Address(RVA = "0x1D64E40", Offset = "0x1D63C40", VA = "0x181D64E40")] public LinkedListNode AddAfter(LinkedListNode node, T value) { return null; } /// Adds a new node containing the specified value before the specified existing node in the . /// The before which to insert a new containing . /// The value to add to the . /// The new containing . /// /// is . /// /// is not in the current . // Token: 0x060015F3 RID: 5619 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60015F3")] [Address(RVA = "0x21F8A10", Offset = "0x21F7810", VA = "0x1821F8A10")] public LinkedListNode AddBefore(LinkedListNode node, T value) { return null; } /// Adds the specified new node before the specified existing node in the . /// The before which to insert . /// The new to add to the . /// /// is . /// -or- /// is . /// /// is not in the current . /// -or- /// belongs to another . // Token: 0x060015F4 RID: 5620 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60015F4")] [Address(RVA = "0x1D65020", Offset = "0x1D63E20", VA = "0x181D65020")] public void AddBefore(LinkedListNode node, LinkedListNode newNode) { } /// Adds a new node containing the specified value at the start of the . /// The value to add at the start of the . /// The new containing . // Token: 0x060015F5 RID: 5621 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60015F5")] [Address(RVA = "0x1D652B0", Offset = "0x1D640B0", VA = "0x181D652B0")] public LinkedListNode AddFirst(T value) { return null; } /// Adds the specified new node at the start of the . /// The new to add at the start of the . /// /// is . /// /// belongs to another . // Token: 0x060015F6 RID: 5622 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60015F6")] [Address(RVA = "0x1D65380", Offset = "0x1D64180", VA = "0x181D65380")] public void AddFirst(LinkedListNode node) { } /// Adds a new node containing the specified value at the end of the . /// The value to add at the end of the . /// The new containing . // Token: 0x060015F7 RID: 5623 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60015F7")] [Address(RVA = "0x21F8D80", Offset = "0x21F7B80", VA = "0x1821F8D80")] public LinkedListNode AddLast(T value) { return null; } /// Adds the specified new node at the end of the . /// The new to add at the end of the . /// /// is . /// /// belongs to another . // Token: 0x060015F8 RID: 5624 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60015F8")] [Address(RVA = "0x1D65660", Offset = "0x1D64460", VA = "0x181D65660")] public void AddLast(LinkedListNode node) { } /// Removes all nodes from the . // Token: 0x060015F9 RID: 5625 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60015F9")] [Address(RVA = "0x1D656F0", Offset = "0x1D644F0", VA = "0x181D656F0", Slot = "7")] public void Clear() { } /// Determines whether a value is in the . /// The value to locate in the . The value can be for reference types. /// /// if is found in the ; otherwise, . // Token: 0x060015FA RID: 5626 RVA: 0x00009B40 File Offset: 0x00007D40 [Token(Token = "0x60015FA")] [Address(RVA = "0x1D657C0", Offset = "0x1D645C0", VA = "0x181D657C0", Slot = "8")] public bool Contains(T value) { return default(bool); } /// 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. /// The number of elements in the source is greater than the available space from to the end of the destination . // Token: 0x060015FB RID: 5627 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60015FB")] [Address(RVA = "0x21F9390", Offset = "0x21F8190", VA = "0x1821F9390", Slot = "9")] public void CopyTo(T[] array, int index) { } /// Finds the first node that contains the specified value. /// The value to locate in the . /// The first that contains the specified value, if found; otherwise, . // Token: 0x060015FC RID: 5628 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60015FC")] [Address(RVA = "0x1D65CD0", Offset = "0x1D64AD0", VA = "0x181D65CD0")] public LinkedListNode Find(T value) { return null; } /// Returns an enumerator that iterates through the . /// An for the . // Token: 0x060015FD RID: 5629 RVA: 0x00009B58 File Offset: 0x00007D58 [Token(Token = "0x60015FD")] [Address(RVA = "0x21F99F0", Offset = "0x21F87F0", VA = "0x1821F99F0")] public LinkedList.Enumerator GetEnumerator() { return default(LinkedList.Enumerator); } // Token: 0x060015FE RID: 5630 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60015FE")] [Address(RVA = "0x1D66AA0", Offset = "0x1D658A0", VA = "0x181D66AA0", Slot = "11")] IEnumerator IEnumerable.GetEnumerator() { return null; } /// Removes the first occurrence of the specified value from the . /// The value to remove from the . /// /// if the element containing is successfully removed; otherwise, . This method also returns if was not found in the original . // Token: 0x060015FF RID: 5631 RVA: 0x00009B70 File Offset: 0x00007D70 [Token(Token = "0x60015FF")] [Address(RVA = "0x1D66920", Offset = "0x1D65720", VA = "0x181D66920", Slot = "10")] public bool Remove(T value) { return default(bool); } /// Removes the specified node from the . /// The to remove from the . /// /// is . /// /// is not in the current . // Token: 0x06001600 RID: 5632 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001600")] [Address(RVA = "0x1D669B0", Offset = "0x1D657B0", VA = "0x181D669B0")] public void Remove(LinkedListNode node) { } /// Removes the node at the start of the . /// The is empty. // Token: 0x06001601 RID: 5633 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001601")] [Address(RVA = "0x21FA9C0", Offset = "0x21F97C0", VA = "0x1821FA9C0")] public void RemoveFirst() { } /// Removes the node at the end of the . /// The is empty. // Token: 0x06001602 RID: 5634 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001602")] [Address(RVA = "0x1D66780", Offset = "0x1D65580", VA = "0x181D66780")] public void RemoveLast() { } /// Implements the interface and returns the data needed to serialize the instance. /// A object that contains the information required to serialize the instance. /// A object that contains the source and destination of the serialized stream associated with the instance. /// /// is . // Token: 0x06001603 RID: 5635 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001603")] [Address(RVA = "0x1D65E90", Offset = "0x1D64C90", VA = "0x181D65E90", Slot = "20")] public virtual void GetObjectData(SerializationInfo info, StreamingContext context) { } /// Implements the interface and raises the deserialization event when the deserialization is complete. /// The source of the deserialization event. /// The object associated with the current instance is invalid. // Token: 0x06001604 RID: 5636 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001604")] [Address(RVA = "0x1D66280", Offset = "0x1D65080", VA = "0x181D66280", Slot = "21")] public virtual void OnDeserialization(object sender) { } // Token: 0x06001605 RID: 5637 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001605")] [Address(RVA = "0x1D66190", Offset = "0x1D64F90", VA = "0x181D66190")] private void InternalInsertNodeBefore(LinkedListNode node, LinkedListNode newNode) { } // Token: 0x06001606 RID: 5638 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001606")] [Address(RVA = "0x1D661D0", Offset = "0x1D64FD0", VA = "0x181D661D0")] private void InternalInsertNodeToEmptyList(LinkedListNode newNode) { } // Token: 0x06001607 RID: 5639 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001607")] [Address(RVA = "0x1D66200", Offset = "0x1D65000", VA = "0x181D66200")] internal void InternalRemoveNode(LinkedListNode node) { } // Token: 0x06001608 RID: 5640 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001608")] [Address(RVA = "0x1D67480", Offset = "0x1D66280", VA = "0x181D67480")] internal void ValidateNewNode(LinkedListNode node) { } // Token: 0x06001609 RID: 5641 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001609")] [Address(RVA = "0x1D675D0", Offset = "0x1D663D0", VA = "0x181D675D0")] internal void ValidateNode(LinkedListNode node) { } /// Gets a value indicating whether access to the is synchronized (thread safe). /// /// if access to the is synchronized (thread safe); otherwise, . In the default implementation of , this property always returns . // Token: 0x17000490 RID: 1168 // (get) Token: 0x0600160A RID: 5642 RVA: 0x00009B88 File Offset: 0x00007D88 [Token(Token = "0x17000490")] bool ICollection.IsSynchronized { [Token(Token = "0x600160A")] [Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "16")] get { return default(bool); } } /// Gets an object that can be used to synchronize access to the . /// An object that can be used to synchronize access to the . In the default implementation of , this property always returns the current instance. // Token: 0x17000491 RID: 1169 // (get) Token: 0x0600160B RID: 5643 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000491")] object ICollection.SyncRoot { [Token(Token = "0x600160B")] [Address(RVA = "0x1D67300", Offset = "0x1D66100", VA = "0x181D67300", Slot = "15")] get { return null; } } /// Copies the elements of the to an , starting at a particular index. /// 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- /// does not have zero-based indexing. /// -or- /// The number of elements in the source is greater than the available space from to the end of the destination . /// -or- /// The type of the source cannot be cast automatically to the type of the destination . // Token: 0x0600160C RID: 5644 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600160C")] [Address(RVA = "0x1D66BD0", Offset = "0x1D659D0", VA = "0x181D66BD0", Slot = "13")] void ICollection.CopyTo(Array array, int index) { } /// Returns an enumerator that iterates through the linked list as a collection. /// An that can be used to iterate through the linked list as a collection. // Token: 0x0600160D RID: 5645 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600160D")] [Address(RVA = "0x1D66AA0", Offset = "0x1D658A0", VA = "0x181D66AA0", Slot = "12")] IEnumerator IEnumerable.GetEnumerator() { return null; } // Token: 0x04000E46 RID: 3654 [FieldOffset(Offset = "0x0")] [Token(Token = "0x4000E46")] internal LinkedListNode head; // Token: 0x04000E47 RID: 3655 [FieldOffset(Offset = "0x0")] [Token(Token = "0x4000E47")] internal int count; // Token: 0x04000E48 RID: 3656 [FieldOffset(Offset = "0x0")] [Token(Token = "0x4000E48")] internal int version; // Token: 0x04000E49 RID: 3657 [FieldOffset(Offset = "0x0")] [Token(Token = "0x4000E49")] private object _syncRoot; // Token: 0x04000E4A RID: 3658 [FieldOffset(Offset = "0x0")] [Token(Token = "0x4000E4A")] private SerializationInfo _siInfo; // Token: 0x04000E4B RID: 3659 [Token(Token = "0x4000E4B")] private const string VersionName = "Version"; // Token: 0x04000E4C RID: 3660 [Token(Token = "0x4000E4C")] private const string CountName = "Count"; // Token: 0x04000E4D RID: 3661 [Token(Token = "0x4000E4D")] private const string ValuesName = "Data"; /// Enumerates the elements of a . /// // Token: 0x02000349 RID: 841 [Token(Token = "0x2000349")] [Serializable] public struct Enumerator : IEnumerator, IDisposable, IEnumerator, ISerializable, IDeserializationCallback { // Token: 0x0600160E RID: 5646 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600160E")] [Address(RVA = "0x1D60FE0", Offset = "0x1D5FDE0", VA = "0x181D60FE0")] internal Enumerator(LinkedList list) { } // Token: 0x0600160F RID: 5647 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600160F")] [Address(RVA = "0x1D61220", Offset = "0x1D60020", VA = "0x181D61220")] private Enumerator(SerializationInfo info, StreamingContext context) { } /// Gets the element at the current position of the enumerator. /// The element in the at the current position of the enumerator. // Token: 0x17000492 RID: 1170 // (get) Token: 0x06001610 RID: 5648 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000492")] public T Current { [Token(Token = "0x6001610")] [Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40", Slot = "4")] get { return null; } } /// Gets the element at the current position of the enumerator. /// The element in the collection at the current position of the enumerator. /// The enumerator is positioned before the first element of the collection or after the last element. // Token: 0x17000493 RID: 1171 // (get) Token: 0x06001611 RID: 5649 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000493")] object IEnumerator.Current { [Token(Token = "0x6001611")] [Address(RVA = "0x1D60990", Offset = "0x1D5F790", VA = "0x181D60990", Slot = "7")] get { return null; } } /// Advances the enumerator to the next element of the . /// /// if the enumerator was successfully advanced to the next element; if the enumerator has passed the end of the collection. /// The collection was modified after the enumerator was created. // Token: 0x06001612 RID: 5650 RVA: 0x00009BA0 File Offset: 0x00007DA0 [Token(Token = "0x6001612")] [Address(RVA = "0x1D5FBE0", Offset = "0x1D5E9E0", VA = "0x181D5FBE0", Slot = "6")] public bool MoveNext() { return default(bool); } /// Sets the enumerator to its initial position, which is before the first element in the collection. This class cannot be inherited. /// The collection was modified after the enumerator was created. // Token: 0x06001613 RID: 5651 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001613")] [Address(RVA = "0x1D600E0", Offset = "0x1D5EEE0", VA = "0x181D600E0", Slot = "8")] void IEnumerator.Reset() { } /// Releases all resources used by the . // Token: 0x06001614 RID: 5652 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001614")] [Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080", Slot = "5")] public void Dispose() { } /// Implements the interface and returns the data needed to serialize the instance. /// A object that contains the information required to serialize the instance. /// A object that contains the source and destination of the serialized stream associated with the instance. /// /// is . // Token: 0x06001615 RID: 5653 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001615")] [Address(RVA = "0x1D60EB0", Offset = "0x1D5FCB0", VA = "0x181D60EB0", Slot = "9")] void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context) { } /// Implements the interface and raises the deserialization event when the deserialization is complete. /// The source of the deserialization event. /// The object associated with the current instance is invalid. // Token: 0x06001616 RID: 5654 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001616")] [Address(RVA = "0x1D60D20", Offset = "0x1D5FB20", VA = "0x181D60D20", Slot = "10")] void IDeserializationCallback.OnDeserialization(object sender) { } // Token: 0x04000E4E RID: 3662 [FieldOffset(Offset = "0x0")] [Token(Token = "0x4000E4E")] private LinkedList _list; // Token: 0x04000E4F RID: 3663 [FieldOffset(Offset = "0x0")] [Token(Token = "0x4000E4F")] private LinkedListNode _node; // Token: 0x04000E50 RID: 3664 [FieldOffset(Offset = "0x0")] [Token(Token = "0x4000E50")] private int _version; // Token: 0x04000E51 RID: 3665 [FieldOffset(Offset = "0x0")] [Token(Token = "0x4000E51")] private T _current; // Token: 0x04000E52 RID: 3666 [FieldOffset(Offset = "0x0")] [Token(Token = "0x4000E52")] private int _index; } } }