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

◆ GetDepth()

static int System.Xml.XPath.XPathNavigator.GetDepth ( XPathNavigator nav)
inlinestaticprivateinherited

Definition at line 1729 of file XPathNavigator.cs.

1730 {
1731 int num = 0;
1732 while (nav.MoveToParent())
1733 {
1734 num++;
1735 }
1736 return num;
1737 }

References System.Xml.XPath.XPathNavigator.MoveToParent().

Referenced by System.Xml.XPath.XPathNavigator.ComparePosition().