Best disassembler tool for the .NET reflector?
- by Joan Venge
What's the best disassembler tool for the .NET reflector?
By best I mean, saving a .NET assembly in a disassembled state in most readable, most likely to compile with fewer changes.
The current one I use doesn't show simplified enumeration but shows the full IEnumerable implementations with MoveNext, etc with member names like:
this.<4_state
CS$<9_CachedAnonymousMethodDelegate3
Btw I am not trying to steal code, just trying out certain things on an already existing assembly instead of writing a similar thing from scratch. In the end, it's what I will learn from this that will stay, not the modified assembly.