Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaObjectEnumerator.cs
Go to the documentation of this file.
2
3namespace System.Xml.Schema;
4
6{
7 private readonly IEnumerator _enumerator;
8
10
12
17
18 public void Reset()
19 {
21 }
22
23 public bool MoveNext()
24 {
25 return _enumerator.MoveNext();
26 }
27
29 {
31 }
32
34 {
35 return _enumerator.MoveNext();
36 }
37}