Search code examples
c#.netportable-executablecorflags

What's the difference between PE32+ and PE32?


When running CorFlags on some DLL file, some show as PE32 and some show as PE32+. What's the difference?


Solution

  • The PE32 format stands for Portable Executable 32-bit, while PE32+ is Portable Executable 64-bit format.

    Please see this article for detailed info.