有没有办法在程序集构建后删除类?
我想删除由 .NET 程序集中的混淆器添加的类。
这应该是可能的(因为混淆器添加了一个),但我不确定以哪种方式。
有没有人有这样的想法或做过类似的事情? 欢迎每一条线索。
I want to remove a class which is added by an obfuscator in a .NET assembly.
This should be possible (cause the obfuscator added one), but I'm not sure in which way.
Has anyone an idea or did something like that?
Every clue is welcome.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Mono Cecil 应该能够帮助您编辑程序集的 IL 并删除类。
Mono Cecil should be able to help you editing the IL of the assembly and removing the class.