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

◆ TryLookup() [2/3]

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

Implements System.Xml.IXmlDictionary.

Definition at line 89 of file XmlDictionary.cs.

90 {
91 return _lookup.TryGetValue(value, out result);
92 }
bool TryGetValue(TKey key, [MaybeNullWhen(false)] out TValue value)
readonly Dictionary< string, XmlDictionaryString > _lookup

References System.Xml.XmlDictionary._lookup, System.Collections.Generic.Dictionary< TKey, TValue >.TryGetValue(), and System.value.