获取程序集中的类型:ReflectionTypeLoad 异常

发布于 2024-12-04 02:34:36 字数 473 浏览 2 评论 0原文

可能的重复:
如何可重现地引发/引发 ReflectionTypeLoadException?

我想获取所有内容加载的程序集中的类型。当我运行时收到 ReflectionTypeLoadException 时,代码片段如下。

Assembly assemblyObj = Assembly.LoadFile(@"D:\abc\abc.dll");
            IList<Type> types = assemblyObj.GetTypes();

代码中的错误是什么。

Possible Duplicate:
How to reproducably cause / provoke a ReflectionTypeLoadException?

I wanted to get all types in a loaded assembly.code snippet is as follows

Assembly assemblyObj = Assembly.LoadFile(@"D:\abc\abc.dll");
            IList<Type> types = assemblyObj.GetTypes();

when i run im getting ReflectionTypeLoadException.What is the mistake in the code.

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

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

发布评论

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

评论(1

浪推晚风 2024-12-11 02:34:37

正如您在我对重复链接的问题的回答中看到的,最有可能的问题是“abc.dll”包含一个派生自引用程序集中的类的类,并且该引用程序集不包含该基类,因为它的版本错误。

As you can see in my answer to the question linked as duplicate, the problem most likely is, that "abc.dll" contains a class that derives from a class in a referenced assembly and that referenced assembly doesn't contain that base class, because it has the wrong version.

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