Exemplo n.º 1
0
        public int GetSigned()
        {
            int value = 0;

            Offset = NativeReader.DecodeSigned(_image, Offset, ref value);
            return(value);
        }
Exemplo n.º 2
0
        public uint GetRelativeOffset()
        {
            uint pos = Offset;

            int delta = 0;

            Offset = NativeReader.DecodeSigned(_image, Offset, ref delta);

            return(pos + (uint)delta);
        }