如何发出代码并将其注入到加载的程序集中?

发布于 2024-08-11 19:35:53 字数 166 浏览 4 评论 0原文

我已经使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

念﹏祤嫣 2024-08-18 19:35:53

您可以使用 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.

那一片橙海, 2024-08-18 19:35:53

您还可以使用 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.

她如夕阳 2024-08-18 19:35:53

您可以使用 Mono.Cecil 来操作 IL。这是一个强大的工具,尽管它缺乏文档。

You can use Mono.Cecil to manipulate IL. It's a powerfull tool, though it somehow lacks documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文