Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XPathEmptyIterator.cs
Go to the documentation of this file.
2
4
5internal sealed class XPathEmptyIterator : ResetableIterator
6{
8
9 public override XPathNavigator Current => null;
10
11 public override int CurrentPosition => 0;
12
13 public override int Count => 0;
14
16 {
17 }
18
19 public override XPathNodeIterator Clone()
20 {
21 return this;
22 }
23
24 public override bool MoveNext()
25 {
26 return false;
27 }
28
29 public override void Reset()
30 {
31 }
32}