如何发出代码并将其注入到加载的程序集中?
我已经使用 System.CodeDom.CodeCompileUnit 动态构建了一些类型,想要将它们编译为内存中的 IL 代码,并将该 IL 代码注入到内存中加载的程序集中 - 无需将其中任何内容保存到磁盘。也许我所说的计划是错误的。接受有关如何将该 CodeCompileUnit 实例到达所述目的地的其他建议。
I've built some Types dynamically using System.CodeDom.CodeCompileUnit, want to compile those into IL code in memory, and inject that IL code into an assembly loaded in memory - there is no need to save any of this to disk. Maybe my stated plan is wrong. Open to other suggestions about how to get that CodeCompileUnit instance to the said destination.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
ICorDebug
接口将代码注入到现有(已加载)程序集中。编辑并继续即可。计算增量字节并调用
ICorDebugModule2::ApplyChanges
。有关更多详细信息,请参阅 MDbg 示例代码。曾几何时,我们使用
ICorDebugModule::GetEditAndContinueSnapshot
和 kin,但这些现在已被弃用。更新 如果您不关心将代码注入到已加载的程序集中,则仅使用
Reflection.Emit
创建新程序集会更高效且更容易。You can inject code into an existing (already loaded) assembly using
ICorDebug
interfaces. Edit and Continue does it.Compute your delta bytes and call
ICorDebugModule2::ApplyChanges
. See the MDbg sample code for more details.Once upon a time we used
ICorDebugModule::GetEditAndContinueSnapshot
and kin, but these are now deprecated.Update If you don't care about injecting code into an already-loaded assembly, just using
Reflection.Emit
to create a new assembly is more efficient and a lot easier.您还可以使用 System.Reflection.Emit 命名空间并创建动态的内存中程序集。
另一种方法是使用 CodeDom 生成 &编译代码,然后调用它。
XMLSerialization() 执行后者。
You can also use System.Reflection.Emit namespace and create a dynamic, in-memory assembly.
Alternative is to use CodeDom to generate & compile code, then call into it.
XMLSerialization() does the latter.
您可以使用 Mono.Cecil 来操作 IL。这是一个强大的工具,尽管它缺乏文档。
You can use Mono.Cecil to manipulate IL. It's a powerfull tool, though it somehow lacks documentation.