CSJ2K.j2k.image.input.ImgReaderPGM.close C# (CSharp) Method

close() public method

Closes the underlying RandomAccessFile from where the image data is being read. No operations are possible after a call to this method.
If an I/O error occurs. /// ///
public close ( ) : void
return void
        public override void close()
        {
            in_Renamed.Dispose();
            in_Renamed = null;
        }