Requires a tool to decompile obfuscation .NET code

I need a tool to decompile obfuscated .NET code. Yes, I know about the reflector and its plugins (FileDisassemble, FileGenerator). But they create a VS project that will not compile.

As an example, the decompiled code contains: closed private class d__0: IEnumerator, IEnumerator, IDisposable {private int <> 1__state; private int <> 2__current;

I need a tool that can automatically rename this name into a readable (read "compiled") form. Thnx.

+3
source share
2 answers

I was able to parse and assemble anything, only with ildasm and then .Net Reflector for viewing. Reflector seems to handle all kinds of file names without any problems.

0
source

Source: https://habr.com/ru/post/1341174/


All Articles