TryReadBeInt32() public static method

public static TryReadBeInt32 ( byte abImage, long off, int &value ) : bool
abImage byte
off long
value int
return bool
Esempio n. 1
0
 public bool TryReadBeInt32(out int i32)
 {
     if (!MemoryArea.TryReadBeInt32(this.bytes, (uint)off, out i32))
     {
         return(false);
     }
     off += 4;
     return(true);
 }