C# 加载的汇编问题
我有一个项目,它使用程序集动态加载一些类,尽管如此,当前项目没有这个类作为引用,所以当我尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法加载程序集或类型名称不正确。验证您的目标程序集不具有您缺少的其他依赖项。
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.