C# 加载的汇编问题

发布于 2024-10-14 07:03:12 字数 123 浏览 1 评论 0原文

我有一个项目,它使用程序集动态加载一些类,尽管如此,当前项目没有这个类作为引用,所以当我尝试使用 GetType(type) 时,我只是得到一个 null.... 什么是处理这个问题的最佳方法

我应该参考这些项目吗?

I have a project that uses assembly to load some clases dynamicly nevertheles there is this one class that the current project does not have it as a reference so when i try tu use GetType(type) i just get a null.... what's the bes approach to handle this

should i reference the projects?

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

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

发布评论

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

评论(1

深居我梦 2024-10-21 07:03:12

您无法加载程序集或类型名称不正确。验证您的目标程序集不具有您缺少的其他依赖项。

You're either failing to load the assembly or the typename is incorrect. Verify that your target assembly doesn't have other dependencies that you're missing.

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