SharpTune.RomMod.SRecordReader.Dispose C# (CSharp) Méthode

Dispose() public méthode

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