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

◆ TryLookup() [1/3]

virtual bool System.Xml.XmlDictionary.TryLookup ( int key,
[NotNullWhen(true)] out XmlDictionaryString? result )
inlinevirtual

Implements System.Xml.IXmlDictionary.

Definition at line 94 of file XmlDictionary.cs.

95 {
97 {
98 result = null;
99 return false;
100 }
101 result = _strings[key];
102 return true;
103 }
XmlDictionaryString[] _strings

References System.Xml.XmlDictionary._nextId, System.Xml.XmlDictionary._strings, and System.key.