CSJ2K.j2k.io.BEBufferedRandomAccessFile.readInt C# (CSharp) Метод

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

Reads a signed int (i.e., 32 bit) from the input. Prior to reading, the input should be realigned at the byte level.
If the end-of file was reached before /// getting all the necessary data. /// /// If an I/O error ocurred. /// ///
public readInt ( ) : int
Результат int
        public override int readInt()
        {
            return ((read() << 24) | (read() << 16) | (read() << 8) | read());
        }