Beispiel #1
0
 public bool TryReadBeInt16(out short s)
 {
     if (!MemoryArea.TryReadBeInt16(bytes, (uint)off, out s))
     {
         return(false);
     }
     off += 2;
     return(true);
 }