Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlElementListEnumerator.cs
Go to the documentation of this file.
2
3namespace System.Xml;
4
5internal sealed class XmlElementListEnumerator : IEnumerator
6{
7 private readonly XmlElementList _list;
8
10
11 private int _changeCount;
12
13 public object Current => _curElem;
14
16 {
17 _list = list;
18 _curElem = null;
19 _changeCount = list.ChangeCount;
20 }
21
22 public bool MoveNext()
23 {
25 {
27 }
29 return _curElem != null;
30 }
31
32 public void Reset()
33 {
34 _curElem = null;
36 }
37}
static string Xdom_Enum_ElementList
Definition SR.cs:1306
Definition SR.cs:7
XmlNode GetNextNode(XmlNode n)