terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
|
Classes | |
struct | Enumerator |
Public Member Functions | |
List () | |
List (int capacity) | |
List (IEnumerable< T > collection) | |
void | Add (T item) |
void | AddRange (IEnumerable< T > collection) |
ReadOnlyCollection< T > | AsReadOnly () |
void | Clear () |
bool | Contains (T item) |
void | CopyTo (T[] array) |
void | CopyTo (T[] array, int arrayIndex) |
T | Find (Predicate< T > match) |
void | ForEach (Action< T > action) |
List< T >.Enumerator | GetEnumerator () |
int | IndexOf (T item) |
void | Insert (int index, T item) |
void | InsertRange (int index, IEnumerable< T > collection) |
bool | Remove (T item) |
int | RemoveAll (Predicate< T > match) |
void | RemoveAt (int index) |
void | RemoveRange (int index, int count) |
void | Reverse () |
void | Reverse (int index, int count) |
void | Sort () |
void | Sort (IComparer< T > comparer) |
void | Sort (int index, int count, IComparer< T > comparer) |
void | Sort (Comparison< T > comparison) |
T[] | ToArray () |
void | TrimExcess () |
Properties | |
int | Capacity [get, set] |
int | Count [get] |
bool IList. | IsFixedSize [get] |
bool ICollection< T >. | IsReadOnly [get] |
bool IList. | IsReadOnly [get] |
bool ICollection. | IsSynchronized [get] |
object ICollection. | SyncRoot [get] |
T | this[int index] [get, set] |
object IList. | this[int index] [get, set] |
Private Member Functions | |
void | AddWithResize (T item) |
int IList. | Add (object item) |
bool IList. | Contains (object item) |
void ICollection. | CopyTo (Array array, int arrayIndex) |
void | EnsureCapacity (int min) |
IEnumerator< T > IEnumerable< T >. | GetEnumerator () |
IEnumerator IEnumerable. | GetEnumerator () |
int IList. | IndexOf (object item) |
void IList. | Insert (int index, object item) |
void IList. | Remove (object item) |
void | AddEnumerable (IEnumerable< T > enumerable) |
Static Private Member Functions | |
static bool | IsCompatibleObject (object value) |
static | List () |
Private Attributes | |
T[] | _items |
int | _size |
int | _version |
object | _syncRoot |
Static Private Attributes | |
const int | DefaultCapacity = 4 |
static readonly T[] | s_emptyArray |