CSJ2K.j2k.util.ISRandomAccessIO.readUnsignedByte C# (CSharp) Метод

readUnsignedByte() публичный Метод

Reads an unsigned byte (8 bit) from the input.
If the end-of file was reached before getting /// all the necessary data. /// /// If an I/O error ocurred. /// ///
public readUnsignedByte ( ) : byte
Результат byte
        public virtual byte readUnsignedByte()
        {
            if (pos < len)
            {
                // common, fast case
                return buf[pos++];
            }
            // general case
            return read();
        }