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

◆ Count

override int MS.Internal.Xml.XPath.Query.Count
getinherited

Definition at line 14 of file Query.cs.

15 {
16 get
17 {
18 if (count == -1)
19 {
21 query.Reset();
22 count = 0;
23 while (query.MoveNext())
24 {
25 count++;
26 }
27 }
28 return count;
29 }
30 }