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

◆ this[string key]

virtual ? string System.Collections.Specialized.StringDictionary.this[string key]
getset

Definition at line 17 of file StringDictionary.cs.

18 {
19 get
20 {
21 if (key == null)
22 {
23 throw new ArgumentNullException("key");
24 }
25 return (string)contents[key.ToLowerInvariant()];
26 }
27 set
28 {
29 if (key == null)
30 {
31 throw new ArgumentNullException("key");
32 }
33 contents[key.ToLowerInvariant()] = value;
34 }
35 }