Esempio n. 1
0
 public bool ReadNet64(out ulong x)
 {
     if (position + 8 > count)
     {
         x = 0;
         return(false);
     }
     x         = NetworkBitConverter.ToUInt64(data, position);
     position += 8;
     return(true);
 }