Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaCollectionEnumerator.cs
Go to the documentation of this file.
2
3namespace System.Xml.Schema;
4
6{
8
10
12
14
16 {
17 _enumerator = collection.GetEnumerator();
18 }
19
21 {
23 }
24
26 {
27 return _enumerator.MoveNext();
28 }
29
30 public bool MoveNext()
31 {
32 return _enumerator.MoveNext();
33 }
34}