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