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

readByte() public method

Reads an unsigned byte of data from the stream. Prior to reading, the stream is realigned at the byte level.
If an I/O error ocurred. /// /// If the end of file was reached /// ///
public readByte ( ) : byte
return byte
        public byte readByte()
        {
            return read();
        }