AlphaTab.IO.ByteBuffer.ReadByte C# (CSharp) 메소드

ReadByte() 공개 메소드

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

            return _buffer[_position++];
        }