SharpTune.RomMod.SRecordReader.Dispose C# (CSharp) 메소드

Dispose() 공개 메소드

Disposes the underlying StreamReader.
public Dispose ( ) : void
리턴 void
        public void Dispose()
        {
            if (this.reader != null)
            {
                this.reader.Dispose();
                this.reader = null;
            }
        }