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.
source share