Best disassembler tool for the .NET reflector?
Posted
by
Joan Venge
on Stack Overflow
See other posts from Stack Overflow
or by Joan Venge
Published on 2011-01-13T18:49:46Z
Indexed on
2011/01/13
18:53 UTC
Read the original article
Hit count: 338
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.
© Stack Overflow or respective owner