AssemblyBuilder 参考程序集
我正在使用 System.Reflection.Emit 创建一个新的程序集。 我希望新程序集引用另一个程序集。有一种方法 GetReferencedAssemblies()
可以获取所有引用的程序集,但没有方法可以引用新程序集。我该怎么做呢?
I am creating a new Assembly using System.Reflection.Emit.
I want the new assembly to reference another assembly. There is a method GetReferencedAssemblies()
that gets all the referenced assemblies, but there is no method to reference a new one. How can I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道一个老问题,但假设像我这样的其他人偶然发现了它......
我最终找到的答案是,在创建新程序集时不需要添加引用。与您发出的代码中使用的类型相关的引用会自动“添加”。
希望这有帮助。
An old question i know, but assuming someone else like me stumbles upon it...
The answer I eventually found is that you don't need to add a reference when creating a new assembly. References related to types used in the code you Emit are automatically "added".
Hope this helps.