System.Reflection.PortableExecutableKinds
namespace System.Reflection
{
public enum PortableExecutableKinds
{
ILOnly = 1,
NotAPortableExecutableImage = 0,
PE32Plus = 4,
Preferred32Bit = 16,
Required32Bit = 2,
Unmanaged32Bit = 8
}
}