.net 6升级后出现异常

发布于 2025-01-14 19:27:15 字数 523 浏览 0 评论 0原文

以下代码(在 .net core 3.1 中运行良好)

var jobType = AppDomain.CurrentDomain
.GetAssemblies()
.SelectMany(x => x.DefinedTypes)
.Single(x => x.FullName == className);

在升级到 .net 6 后抛出异常 输入图片这里的描述

className 是我们需要动态实例化的类的命名空间 my.redacted.namespace.Jobs.ReminderMail.MonthlyUpdateReminderJob

这种动态获取 Type 的方式不再可能了吗?该怎么办?

提前致谢

The following code (which worked fine in .net core 3.1)

var jobType = AppDomain.CurrentDomain
.GetAssemblies()
.SelectMany(x => x.DefinedTypes)
.Single(x => x.FullName == className);

is throwing the exception after the upgrade to .net 6
enter image description here

className is the namespace to a class we need to dynamically instantiate
my.redacted.namespace.Jobs.ReminderMail.MonthlyUpdateReminderJob

Is this way of dynamically getting the Type not possible anymore and what would be the way to go?

Thanks in advance

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文