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

◆ Count

virtual int System.Xml.XPath.XPathNodeIterator.Count
get

Definition at line 65 of file XPathNodeIterator.cs.

66 {
67 get
68 {
69 if (count == -1)
70 {
71 XPathNodeIterator xPathNodeIterator = Clone();
72 while (xPathNodeIterator.MoveNext())
73 {
74 }
75 count = xPathNodeIterator.CurrentPosition;
76 }
77 return count;
78 }
79 }

Referenced by MS.Internal.Xml.XPath.NodeFunctions.Evaluate().