TryReadLeInt32() public static method

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