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

◆ this[Type type, string member]

XmlAttributes? System.Xml.Serialization.XmlAttributeOverrides.this[Type type, string member]
get

Definition at line 11 of file XmlAttributeOverrides.cs.

12 {
13 get
14 {
15 if (!_types.TryGetValue(type, out var value) || !value.TryGetValue(member, out var value2))
16 {
17 return null;
18 }
19 return value2;
20 }
21 }
bool TryGetValue(TKey key, [MaybeNullWhen(false)] out TValue value)
readonly Dictionary< Type, Dictionary< string, XmlAttributes > > _types