问题描述
我需要一个工具来反编译混淆的.NET代码。
是的,我知道Reflector及其插件(FileDisassemble,FileGenerator)。
但是他们创建了不会编译的VS项目。
I need a tool to decompile obfuscated .NET code.Yes, I know about Reflector and its plugins (FileDisassemble, FileGenerator).But they create VS project which won't compile.
例如,反编译代码包含:
私有密封类d__0:IEnumerator,IEnumerator ,IDisposable
{
private int<> 1__state;
private int<> 2__current;
For an example the decompiled code contains: private sealed class d__0 : IEnumerator, IEnumerator, IDisposable { private int <>1__state; private int <>2__current;
我需要一个可以自动将此类名称重命名为可读(可读取)格式的工具。
Thnx。
I need a tool which could rename automatically such name into readable (read "compilable") form.Thnx.
推荐答案
这篇关于想要用于反编译混淆的.NET代码的工具的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!