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

countedByteRead() private method

Returns a byte read from the RandomAccessIO. The number of read byted are counted to keep track of the offset of the pixel data in the PGM file
If an I/O error occurs. /// /// If an EOF is read /// ///
private countedByteRead ( ) : byte
return byte
        private byte countedByteRead()
        {
            offset++;
            return (byte) in_Renamed.ReadByte();
        }