SharpTune.RomMod.SRecordReader.Dispose C# (CSharp) Method

Dispose() public method

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