System.Reflection.PortableExecutable.CoffHeader
namespace System.Reflection.PortableExecutable
{
public sealed class CoffHeader
{
public Machine Machine { get; }
public short NumberOfSections { get; }
public int TimeDateStamp { get; }
public int PointerToSymbolTable { get; }
public int NumberOfSymbols { get; }
public short SizeOfOptionalHeader { get; }
public Characteristics Characteristics { get; }
}
}