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

◆ Dispose() [2/2]

override void System.IO.ReadLinesIterator.Dispose ( bool disposing)
inlineprotectedvirtual

Reimplemented from System.IO.Iterator< string >.

Definition at line 39 of file ReadLinesIterator.cs.

40 {
41 try
42 {
43 if (disposing && _reader != null)
44 {
46 }
47 }
48 finally
49 {
50 _reader = null;
51 base.Dispose(disposing);
52 }
53 }
override void Dispose(bool disposing)

References System.IO.ReadLinesIterator._reader, and System.IO.StreamReader.Dispose().