PERWAPI.Section.GetOffset C# (CSharp) 메소드

GetOffset() 개인적인 메소드

private GetOffset ( uint inRVA ) : uint
inRVA uint
리턴 uint
        internal uint GetOffset(uint inRVA)
        {
            uint offs = 0;
            if ((rva <= inRVA) && (inRVA <= rva+tide))
                offs = offset + (inRVA - rva);
            return offs;
        }