CSJ2K.j2k.image.input.ImgReaderPPM.countedByteRead C# (CSharp) 메소드

countedByteRead() 개인적인 메소드

Returns a byte read from the RandomAccessFile. The number of read byted are counted to keep track of the offset of the pixel data in the PPM file
private countedByteRead ( ) : byte
리턴 byte
        private byte countedByteRead()
        {
            offset++;
            return (byte) in_Renamed.ReadByte();
        }