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

◆ MoveNext()

override bool System.IO.ReadLinesIterator.MoveNext ( )
inline

Definition at line 20 of file ReadLinesIterator.cs.

21 {
22 if (_reader != null)
23 {
25 if (current != null)
26 {
27 return true;
28 }
29 Dispose();
30 }
31 return false;
32 }
override? string ReadLine()

References System.IO.ReadLinesIterator._reader, System.IO.Iterator< string >.current, System.IO.Iterator< string >.Dispose(), and System.IO.StreamReader.ReadLine().