Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有工具可以让我反编译 .net dll,对其进行编辑并将其重新打包回 dll?
我经常使用 dotPeek。它不能重新打包或编辑。
虽然 Reflector 很酷 - 但它不是免费的。
有Mono.Cecil - 这是一个可以修改程序集的较低级别的工具。我现在最常使用的两个是:
JustDecompile和DotPeek
反射器是其中一种。我已经成功地从二进制文件创建了 c# 项目并重新编译了它们。
请记住,受保护的程序集很难反编译,而且它们可能会被混淆或防止 ILDASM。