将 Type 作为参数传递给函数
我有一个字典对象,
Dictionary<string, Type> dict = new Dictionary<string, Type>();
我还有一个 BaseClass 和许多子类,例如:ChildClass1、ChildClass2 等。 字典有值:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以调用 Activator.CreateInstance(type)
you can invoke Activator.CreateInstance(type)