TryReadLeUInt32() 공개 메소드

public TryReadLeUInt32 ( Address address, uint &dw ) : bool
address Address
dw uint
리턴 bool
예제 #1
0
 public bool TryReadLeUInt32(out uint ui32)
 {
     if (!MemoryArea.TryReadLeUInt32(this.bytes, (uint)off, out ui32))
     {
         return(false);
     }
     off += 4;
     return(true);
 }
예제 #2
0
 public bool TryPeekLeUInt32(int offset, out uint value)
 {
     return(MemoryArea.TryReadLeUInt32(bytes, offset + off, out value));
 }