Sharpen.WrappedSystemStream.Close C# (CSharp) Method

Close() public method

public Close ( ) : void
return void
        public override void Close()
        {
            if (this.ist != null) {
                this.ist.Close ();
            }
            if (this.ost != null) {
                this.ost.Close ();
            }
        }