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

◆ DeepEquals() [2/2]

static bool System.Xml.Linq.XNode.DeepEquals ( XNode? n1,
XNode? n2 )
inlinestaticinherited

Definition at line 426 of file XNode.cs.

427 {
428 if (n1 == n2)
429 {
430 return true;
431 }
432 if (n1 == null || n2 == null)
433 {
434 return false;
435 }
436 return n1.DeepEquals(n2);
437 }

Referenced by System.Xml.Linq.XNodeEqualityComparer.Equals().