예제 #1
0
        public ushort ReadLeUInt16()
        {
            ushort u = ByteMemoryArea.ReadLeUInt16(bytes, off);

            off += 2;
            return(u);
        }
예제 #2
0
 public short PeekLeInt16(int offset)
 {
     return((short)ByteMemoryArea.ReadLeUInt16(bytes, offset + (uint)off));
 }