tags:

views:

41

answers:

2

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
+4  A: 

Hi.

I recommend reflector.

It can show you IL, C# and a lot more.

Best

Adriano

Vagaus
Nice, I didn't know it could show the IL.
Frank Meulenaar