|
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
|
Inheritance diagram for System.Collections.Generic.Stack< T >:
Collaboration diagram for System.Collections.Generic.Stack< T >: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, set] |
| bool System.Collections.ICollection. | IsSynchronized [get, set] |
| object System.Collections.ICollection. | SyncRoot [get, set] |
| bool | IsReadOnly [get] |
Private Member Functions | |
| void System.Collections.ICollection. | CopyTo (global::System.Array array, int arrayIndex) |
| IEnumerator< T > System.Collections.Generic.IEnumerable< T >. | GetEnumerator () |
| IEnumerator System.Collections.IEnumerable. | GetEnumerator () |
| void | PushWithResize (T item) |
| void | ThrowForEmptyStack () |
Private Attributes | |
| T[] | _array |
| int | _size |
| int | _version |
| object | _syncRoot |