AlphaTab.IO.ByteBuffer.ReadByte C# (CSharp) Method

ReadByte() public method

public ReadByte ( ) : int
return int
        public int ReadByte()
        {
            int n = _length - _position;
            if (n <= 0)
                return -1;

            return _buffer[_position++];
        }