即时修改 IL 代码
我想动态修改现有类的 .Net IL 代码。这有可能吗?我找到了一些对 .Net Profiling API 的引用,但根据文档,它不支持自修改应用程序。主要目的是替换某些属性的 getter 和 setter。任何提示将不胜感激。
干杯, 阿希姆
I want to modify .Net IL code of an existing class on the fly. Is that possible somehow? I found some references to the .Net Profiling API, but according to the documentation it does not support self modifying applications. The main purpose would be to replace getters and setters of some properties. Any hint would be very appreciated.
cheers,
Achim
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您查看 Mono Cecil。不要认为您不能在 Windows .NET 应用程序中使用 Mono 二进制文件。
塞西尔就像类固醇的反思。您不仅可以反映程序集,还可以更改其 IL 并保存结果。
这是一个关于执行此操作的不错的网络广播。
I'd suggest you check out Mono Cecil. Don't think you can't use Mono binaries in your windows .NET application.
Cecil is like reflection on steroids. You can not only reflect over an assembly, but alter its IL and save the result.
Here's a decent webcast about doing this.