|
Terraria v1.4.4.9
Terraria source code documentation
|
Public Member Functions | |
| void | Clear () |
| void | RemoveAt (int index) |
| IEnumerator | GetEnumerator () |
| int | Add (object? value) |
| bool | Contains (object? value) |
| int | IndexOf (object? value) |
| void | Insert (int index, object? value) |
| void | Remove (object? value) |
Protected Member Functions | |
| CollectionBase () | |
| CollectionBase (int capacity) | |
| virtual void | OnSet (int index, object? oldValue, object? newValue) |
| virtual void | OnInsert (int index, object? value) |
| virtual void | OnClear () |
| virtual void | OnRemove (int index, object? value) |
| virtual void | OnValidate (object value) |
| virtual void | OnSetComplete (int index, object? oldValue, object? newValue) |
| virtual void | OnInsertComplete (int index, object? value) |
| virtual void | OnClearComplete () |
| virtual void | OnRemoveComplete (int index, object? value) |
Properties | |
| ArrayList | InnerList [get] |
| IList | List [get] |
| int | Capacity [get, set] |
| int | Count [get] |
| bool IList. | IsReadOnly [get] |
| bool IList. | IsFixedSize [get] |
| bool ICollection. | IsSynchronized [get] |
| object ICollection. | SyncRoot [get] |
| object? IList. | this[int index] [get, set] |
Private Member Functions | |
| void ICollection. | CopyTo (Array array, int index) |
| bool IList. | Contains (object value) |
| int IList. | Add (object value) |
| void IList. | Remove (object value) |
| int IList. | IndexOf (object value) |
| void IList. | Insert (int index, object value) |
Private Attributes | |
| readonly ArrayList | _list |
Definition at line 3 of file CollectionBase.cs.