示例#1
0
 public bool TryReadLeInt16(out short i16)
 {
     if (!ByteMemoryArea.TryReadLeInt16(this.bytes, (uint)off, out i16))
     {
         return(false);
     }
     off += 2;
     return(true);
 }