TryReadBe() 공개 메소드

public TryReadBe ( long imageOffset, PrimitiveType type, Constant &c ) : bool
imageOffset long
type PrimitiveType
c Constant
리턴 bool
예제 #1
0
        public bool TryReadBe(PrimitiveType dataType, out Constant c)
        {
            bool ret = image.TryReadBe(off, dataType, out c);

            if (ret)
            {
                off += (uint)dataType.Size;
            }
            return(ret);
        }
예제 #2
0
 public override bool TryRead(MemoryArea mem, Address addr, PrimitiveType dt, out Constant value)
 {
     return(mem.TryReadBe(addr, dt, out value));
 }