terraria-cpp2il v1.4.4.9
Terraria mobile dump, with CallAnalysis (see source code). Dump with reconstucted method: https://infinitynichto.github.io/terraria-cpp2il-methodrecon
|
Classes | |
class | KeyList |
class | SortedListDebugView |
class | SortedListEnumerator |
class | SyncSortedList |
class | ValueList |
Public Member Functions | |
SortedList () | |
SortedList (int initialCapacity) | |
SortedList (IComparer comparer) | |
virtual void | Add (object key, object value) |
virtual void | Clear () |
virtual object | Clone () |
virtual bool | Contains (object key) |
virtual bool | ContainsValue (object value) |
virtual void | CopyTo (global::System.Array array, int arrayIndex) |
virtual object | GetByIndex (int index) |
virtual IDictionaryEnumerator | GetEnumerator () |
virtual object | GetKey (int index) |
virtual IList | GetKeyList () |
virtual IList | GetValueList () |
virtual int | IndexOfKey (object key) |
virtual int | IndexOfValue (object value) |
virtual void | RemoveAt (int index) |
virtual void | Remove (object key) |
Static Public Member Functions | |
static SortedList | Synchronized (SortedList list) |
Properties | |
virtual int | Capacity [set] |
virtual int | Count [get, set] |
virtual ICollection | Keys [get, set] |
virtual ICollection | Values [get, set] |
virtual bool | IsReadOnly [get, set] |
virtual bool | IsFixedSize [get, set] |
virtual bool | IsSynchronized [get, set] |
virtual object | SyncRoot [get, set] |
virtual object | this[object key] [get, set] |
Private Member Functions | |
void | Init () |
void | EnsureCapacity (int min) |
IEnumerator System.Collections.IEnumerable. | GetEnumerator () |
void | Insert (int index, object key, object value) |
Private Attributes | |
object[] | keys |
object[] | values |
int | _size |
int | version |
IComparer | comparer |
SortedList.KeyList | keyList |
SortedList.ValueList | valueList |
object | _syncRoot |
Definition at line 15 of file SortedList.cs.