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

◆ this[object key]

object System.Collections.Specialized.DictionaryWrapper.this[object key]
getset

Implements System.Collections.IDictionary.

Definition at line 21 of file DictionaryWrapper.cs.

22 {
23 get
24 {
25 return this[(string)key];
26 }
27 set
28 {
29 this[(string)key] = (string)value;
30 }
31 }