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 | |
Stack () | |
T | Peek () |
T | Pop () |
void | Push (T item) |
void | Add (T item) |
void | Clear () |
bool | Contains (T item) |
void | CopyTo (T[] array, int arrayIndex) |
bool | Remove (T item) |
Properties | |
int | Count [get] |
bool ICollection. | IsSynchronized [get] |
object ICollection. | SyncRoot [get] |
bool | IsReadOnly [get] |
Private Member Functions | |
void ICollection. | CopyTo (Array array, int arrayIndex) |
IEnumerator< T > IEnumerable< T >. | GetEnumerator () |
IEnumerator IEnumerable. | GetEnumerator () |
void | PushWithResize (T item) |
void | ThrowForEmptyStack () |
Private Attributes | |
T[] | _array |
int | _size |
int | _version |
object | _syncRoot |