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

◆ this[string name, string ns] [2/2]

object INameScope. System.Xml.Serialization.NameTable.this[string name, string ns]
getsetprivate

Implements System.Xml.Serialization.INameScope.

Definition at line 42 of file NameTable.cs.

43 {
44 get
45 {
46 _table.TryGetValue(new NameKey(name, ns), out var value);
47 return value;
48 }
49 set
50 {
51 _table[new NameKey(name, ns)] = value;
52 }
53 }
bool TryGetValue(TKey key, [MaybeNullWhen(false)] out TValue value)
readonly Dictionary< NameKey, object > _table
Definition NameTable.cs:8