TryReadBeUInt64() public static method

public static TryReadBeUInt64 ( byte image, long off, ulong &value ) : bool
image byte
off long
value ulong
return bool
Ejemplo n.º 1
0
 public bool TryReadBeUInt64(out ulong value)
 {
     if (!MemoryArea.TryReadBeUInt64(this.bytes, off, out value))
     {
         return(false);
     }
     off += 8;
     return(true);
 }
Ejemplo n.º 2
0
 public bool TryPeekBeUInt64(int offset, out ulong value)
 {
     return(MemoryArea.TryReadBeUInt64(bytes, offset + off, out value));
 }