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

◆ Equals()

override bool System.Xml.Schema.ChameleonKey.Equals ( [NotNullWhen(true)] object obj)
inline

Definition at line 34 of file ChameleonKey.cs.

35 {
36 if (this == obj)
37 {
38 return true;
39 }
41 {
42 if (targetNS.Equals(chameleonKey.targetNS) && chameleonLocation.Equals(chameleonKey.chameleonLocation))
43 {
44 return originalSchema == chameleonKey.originalSchema;
45 }
46 return false;
47 }
48 return false;
49 }
override bool Equals([NotNullWhen(true)] object? comparand)
Definition Uri.cs:1166
ChameleonKey(string ns, XmlSchema originalSchema)

References System.Xml.Schema.ChameleonKey.chameleonLocation, System.Xml.Dictionary, System.Uri.Equals(), System.obj, System.Xml.Schema.ChameleonKey.originalSchema, and System.Xml.Schema.ChameleonKey.targetNS.