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

◆ operator==()

static bool System.Xml.XmlQualifiedName.operator== ( XmlQualifiedName? a,
XmlQualifiedName? b )
inlinestaticinherited

Definition at line 83 of file XmlQualifiedName.cs.

84 {
85 if ((object)a == b)
86 {
87 return true;
88 }
89 if ((object)a == null || (object)b == null)
90 {
91 return false;
92 }
93 if (a.Name == b.Name)
94 {
95 return a.Namespace == b.Namespace;
96 }
97 return false;
98 }

References System.Xml.Dictionary.