TryReadLeInt64() public static method

public static TryReadLeInt64 ( byte image, long off, long &value ) : bool
image byte
off long
value long
return bool
Esempio n. 1
0
 public bool TryReadLeInt64(out long value)
 {
     if (!MemoryArea.TryReadLeInt64(this.bytes, off, out value))
     {
         return(false);
     }
     off += 8;
     return(true);
 }