Viewing the CIL of a portable executable
What is a good program to get a nice, human rea开发者_C百科dable 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).
I recommend reflector.
It can show you IL, C# and a lot more.
[edited] Since reflector is not free anymore I am using ILSpy [/edited]
Best
Adriano
You should be to use ILDASM to extract the IL
ildasm.exe MyProgram.exe /out=MyProgram.il
精彩评论