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

◆ this[XmlQualifiedName name]

XmlSchemaObject? System.Xml.Schema.XmlSchemaObjectTable.this[XmlQualifiedName name]
get

Definition at line 236 of file XmlSchemaObjectTable.cs.

237 {
238 get
239 {
240 if (_table.TryGetValue(name, out var value))
241 {
242 return value;
243 }
244 return null;
245 }
246 }
bool TryGetValue(TKey key, [MaybeNullWhen(false)] out TValue value)
readonly Dictionary< XmlQualifiedName, XmlSchemaObject > _table