Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ this[object key]

override object System.Collections.Hashtable.SyncHashtable.this[object key]
getset

Implements System.Collections.IDictionary.

Definition at line 119 of file Hashtable.cs.

120 {
121 get
122 {
123 return _table[key];
124 }
125 set
126 {
128 {
129 _table[key] = value;
130 }
131 }
132 }