Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IXmlDictionary.cs
Go to the documentation of this file.
2
3namespace System.Xml;
4
5public interface IXmlDictionary
6{
7 bool TryLookup(string value, [NotNullWhen(true)] out XmlDictionaryString? result);
8
9 bool TryLookup(int key, [NotNullWhen(true)] out XmlDictionaryString? result);
10
12}
bool TryLookup(XmlDictionaryString value, [NotNullWhen(true)] out XmlDictionaryString? result)
bool TryLookup(int key, [NotNullWhen(true)] out XmlDictionaryString? result)
bool TryLookup(string value, [NotNullWhen(true)] out XmlDictionaryString? result)