TryReadBeUInt32() public static method

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