예제 #1
0
        public short ReadInt16()
        {
            short result = FastBitConverter.ToInt16(_data, _position);

            _position += 2;
            return(result);
        }
예제 #2
0
        public char ReadChar()
        {
            char result = (char)FastBitConverter.ToInt16(_data, _position);

            _position += 2;
            return(result);
        }
예제 #3
0
 public short PeekShort()
 {
     return(FastBitConverter.ToInt16(_data, _position));
 }
예제 #4
0
 public char PeekChar()
 {
     return((char)FastBitConverter.ToInt16(_data, _position));
 }