mscorlib(4.0.0.0) API with additions
PortableExecutableKinds.cs
2 
3 namespace System.Reflection
4 {
7  [Flags]
8  [ComVisible(true)]
10  {
14  ILOnly = 0x1,
16  Required32Bit = 0x2,
18  PE32Plus = 0x4,
20  Unmanaged32Bit = 0x8,
22  [ComVisible(false)]
23  Preferred32Bit = 0x10
24  }
25 }
The executable can be run on a 32-bit platform, or in the 32-bit Windows on Windows (WOW) environment...
The executable contains only Microsoft intermediate language (MSIL), and is therefore neutral with re...
Definition: __Canon.cs:3
The executable contains pure unmanaged code.
The executable requires a 64-bit platform.
The executable is platform-agnostic but should be run on a 32-bit platform whenever possible.
PortableExecutableKinds
Identifies the nature of the code in an executable file.
Specifies that the class can be serialized.
The file is not in portable executable (PE) file format.