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

◆ CompareSetToOther()

NamespaceList System.Xml.Schema.NamespaceList.CompareSetToOther ( NamespaceList other)
inlineprivate

Definition at line 214 of file NamespaceList.cs.

215 {
216 NamespaceList namespaceList = null;
217 if (_set.Contains(other._targetNamespace))
218 {
219 if (_set.Contains(string.Empty))
220 {
221 return new NamespaceList();
222 }
223 return new NamespaceList("##other", string.Empty);
224 }
225 if (_set.Contains(string.Empty))
226 {
227 return null;
228 }
229 return other.Clone();
230 }
virtual bool Contains(object key)
Definition Hashtable.cs:719

References System.Xml.Schema.NamespaceList.NamespaceList(), System.Xml.Schema.NamespaceList._set, System.Collections.Hashtable.Contains(), and System.other.