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
]
get
set
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
}
System.Collections.Specialized.StringDictionary.contents
readonly Hashtable contents
Definition
StringDictionary.cs:11
System.ExceptionArgument.value
@ value
System.ExceptionArgument.key
@ key
System
Collections
Specialized
StringDictionary
Generated by
1.10.0