CSJ2K.j2k.io.BufferedRandomAccessFile.close C# (CSharp) 메소드

close() 공개 메소드

Closes the buffered random access file
If an I/O error ocurred. /// ///
public close ( ) : void
리턴 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
        }