System.Reflection.PortableExecutable.SectionLocation
struct SectionLocation
namespace System.Reflection.PortableExecutable
{
internal struct SectionLocation
{
public int RelativeVirtualAddress { get; }
public int PointerToRawData { get; }
public SectionLocation(int relativeVirtualAddress, int pointerToRawData);
}
}