Terraria v1.4.4.9
Terraria source code documentation
|
Public Member Functions | |
DictionaryWrapper (Dictionary< string, string > contents) | |
void | Add (string key, string value) |
void | Add (KeyValuePair< string, string > item) |
void | Add (object key, object value) |
void | Clear () |
bool | Contains (KeyValuePair< string, string > item) |
bool | Contains (object key) |
bool | ContainsKey (string key) |
bool | ContainsValue (string value) |
void | CopyTo (KeyValuePair< string, string >[] array, int arrayIndex) |
void | CopyTo (Array array, int index) |
bool | Remove (string key) |
void | Remove (object key) |
bool | Remove (KeyValuePair< string, string > item) |
bool | TryGetValue (string key, out string value) |
IEnumerator< KeyValuePair< string, string > > | GetEnumerator () |
void | Add (object key, object? value) |
void | Add (object key, object? value) |
Properties | |
string | this[string key] [get, set] |
object | this[object key] [get, set] |
ICollection< string > | Keys [get] |
ICollection< string > | Values [get] |
ICollection IDictionary. | Keys [get] |
ICollection IDictionary. | Values [get] |
int | Count [get] |
bool | IsReadOnly [get] |
bool | IsSynchronized [get] |
bool | IsFixedSize [get] |
object | SyncRoot [get] |
Private Member Functions | |
IEnumerator IEnumerable. | GetEnumerator () |
IDictionaryEnumerator IDictionary. | GetEnumerator () |
Private Attributes | |
readonly Dictionary< string, string > | _contents |
Definition at line 5 of file DictionaryWrapper.cs.