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

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

Reads a signed short (i.e. 16 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 readShort ( ) : short
Результат short
        public override short readShort()
        {
            return (short) ((read() << 8) | (read()));
        }