Suppose I wish to disassemble a type. But this type depends on other types in the same assembly and so forth. In a sense, I wish to be able to disassemble the closure defined by a particular type.

I am not interesting in disassembling to C#. Plain IL code is fine, just like ildasm produces it.

Thanks.

EDIT1

It is very important for me to be able to recompile the code back again. It is because of this that I cannot use Reflector, which produces illegal C# code from the compiler perspective for all, but the most simple cases. It is very useful to learn the code and debug it, if you have the Pro version, but not to disassemble and reassemble it back.

EDIT2

BTW, the same is true for the IL code generated by the Reflector - it is not suitable for recompilation, unlike the code produced by ildasm, which is. Granted, Reflector produces much more readable code, alas - not for the compiler.

link|improve this question

61% accept rate
feedback

1 Answer

User reflector. It will disassemble the whole assembly --> c#

It is a free download, for a couple more days...

(i am assuming you don't mind it being c# and not IL)

link|improve this answer
1  
Reflector dissambles just fine to IL as well as a number of other .NET languages besides C#. You can select the disassembly language directly in the toolbar or in the options dialog box. – Martin Liversage Feb 21 '11 at 10:16
Reflector does not disassemble just fine into C#. The disassembled code is almost never can be compiled back. For large assemblies, it is impossible to recompile the code produced by Reflector. It is excellent for examining it and debugging if you have the Pro version. That's it. – mark Feb 21 '11 at 11:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.