Esempio n. 1
0
 public bool TryReadLeInt16(out short i16)
 {
     if (!MemoryArea.TryReadLeInt16(this.bytes, (uint)off, out i16))
     {
         return(false);
     }
     off += 2;
     return(true);
 }