查找与命名空间匹配的程序集

发布于 2024-09-01 08:24:49 字数 161 浏览 3 评论 0原文

我有一个 C# 脚本执行器,它通过包装来执行 C# 的任意块,并且 在自己的应用程序域中执行它。为了正确编译它,我需​​要知道哪些程序集 它需要。

我是否需要提取脚本的名称空间并迭代 我能找到的每个程序集,以找到匹配项,或者它们是更简单的方法吗?

谢谢。 鲍勃.

I have a C# script executor, which execute an arbitary chunk of c#, by wrapping it, and
executing it in its own appdomain. To compile it correctly, I need to know what assemblies
it needs.

Is it the case that I need to extract the namespaces for the script and iterate through
every assembly I can find, to find a match, or is their a simpler way to do it?

Thanks.
Bob.

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

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

发布评论

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

评论(1

记忆之渊 2024-09-08 08:24:49

如果您需要这样做,那么这几乎就是您必须做的。另外,请记住,命名空间可以跨越程序集,因此请确保获取具有该命名空间的类型的所有程序集,而不仅仅是找到的第一个程序集。

If you need to do this then that is pretty much what you will have to do. Also, remember that namespaces can span assemblies so make sure you grab all assemblies that have types with that namespace, not just the first one you find.

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