PERWAPI.Section.GetOffset C# (CSharp) Method

GetOffset() private method

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