Assembly.LoadModule 的用法

发布于 2024-12-25 08:11:19 字数 249 浏览 2 评论 0原文

如何使用这个方法呢?

Assembly.LoadModule

我正在创建一个程序集在运行时使用 Thread.GetDomain().DefineDynamicAssembly...

我想知道如何在设计时定义的现有程序集中加载在运行时创建的程序集。

How to use this method?

Assembly.LoadModule

I am creating an assembly in runtime using Thread.GetDomain().DefineDynamicAssembly...

I want to know how can I load this assembly created in runtime in an existing assembly defined in design time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

焚却相思 2025-01-01 08:11:19

从您的问题来看,您似乎正在尝试将动态创建的Assembly加载到开发人员在磁盘上定义的Assembly中。这是正确的吗?

如果是这样,这根本不可能。程序集一旦定义,实际上就是不可变的。它们的类型信息在运行时不能更改。之后无法将模块推入其中。

您能否向我们详细介绍一下您想要实现的目标?也许还有另一种解决方案。

From your question it sounds like your are trying to load a dynamically created Assembly into an Assembly which is defined on disk by the developer. Is that correct?

If so this is simply not possible. Assemblies once defined are effectively immutable. Their type information can't change at run time. Modules can't be pushed into them afterwards.

Can you give us a bit more detail on what you're trying to achieve here? Perhaps there is another solution.

计㈡愣 2025-01-01 08:11:19

您不必加载它。您刚刚创建了它,因此它已经加载了。您现在需要做的就是使用 AssemblyBuilder.DefineDynamicModule() 创建一个 ModuleBuilder,在其中创建您的类,然后开始使用它们。

You do not have to load it. You have just created it, so it is already loaded. All you need to do now is create a ModuleBuilder with AssemblyBuilder.DefineDynamicModule(), create your classes in it, and start using them.

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