System.Reflection.PortableExecutable.SectionHeader
namespace System.Reflection.PortableExecutable
{
public struct SectionHeader
{
public string Name { get; }
public int VirtualSize { get; }
public int VirtualAddress { get; }
public int SizeOfRawData { get; }
public int PointerToRawData { get; }
public int PointerToRelocations { get; }
public int PointerToLineNumbers { get; }
public ushort NumberOfRelocations { get; }
public ushort NumberOfLineNumbers { get; }
public SectionCharacteristics SectionCharacteristics { get; }
}
}