CSJ2K.j2k.io.BufferedRandomAccessFile.close C# (CSharp) Method

close() public method

Closes the buffered random access file
If an I/O error ocurred. /// ///
public close ( ) : void
return void
        public virtual void close()
        {
            /* If the buffer has been changed, it need to be saved before
            * closing
            */
            flush();
            byteBuffer = null; // Release the byte-buffer reference
        }