将 Type 作为参数传递给函数

发布于 2024-10-14 10:26:48 字数 511 浏览 2 评论 0原文

我有一个字典对象,

Dictionary<string, Type> dict = new Dictionary<string, Type>();

我还有一个 BaseClass 和许多子类,例如:ChildClass1ChildClass2 等。 字典有值:

dict.Add("type1", typeof(ChildClass1));
dict.Add("type2", typeof(ChildClass2));

我的问题是 - 有没有办法做这样的事情:

BaseClass c = new <<get a type from the dict: dict[type1]>>()?

我只是想让我的解决方案更加灵活,但我不确定这是否可能。 谢谢!

I have a dictionary object

Dictionary<string, Type> dict = new Dictionary<string, Type>();

I also have a BaseClass and a number of child-classes, say: ChildClass1, ChildClass2, etc.
The dictionary has values:

dict.Add("type1", typeof(ChildClass1));
dict.Add("type2", typeof(ChildClass2));

My question is - is there any way to do something like this:

BaseClass c = new <<get a type from the dict: dict[type1]>>()?

I just want to make my solution more flexible, but I'm not sure if that's possible at all.
Thanks!

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

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

发布评论

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

评论(2

哥,最终变帅啦 2024-10-21 10:26:48
var c = (BaseClass)Activator.CreateInstance(dict["type1"]);
var c = (BaseClass)Activator.CreateInstance(dict["type1"]);
淡写薰衣草的香 2024-10-21 10:26:48

您可以调用 Activator.CreateInstance(type)

you can invoke Activator.CreateInstance(type)

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