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());
        }