What is a good program to get a nice, human readable form of the CLI of a portable executable file? I don't want a full disassembler because I'd like to learn how they work (or, in my case, not work).
+2
A:
You should be to use ILDASM to extract the IL
ildasm.exe MyProgram.exe /out=MyProgram.il
Jose Basilio
2010-05-10 16:22:44