Reputation: 267
I try to decompile a .net assembly. Currently I get the class- and typenames. But how do I get the IL Code of the whole binary?
Upvotes: 2
Views: 1210
Reputation: 3696
1) Open the assembly in ILDasm GUI.
2) File -> Dump (Ctrl-D)
3) Choose options
4) Save the IL file
Upvotes: 0
Reputation: 225183
Specify the output:
ildasm /OUT=decompiled.il file
Need further help? Next time, try running ildasm /?
.
Upvotes: 4