gpt4 book ai didi

c# - 在 C# 中使用 Type.GetType() 返回的类型

转载 作者:可可西里 更新时间:2023-11-01 07:53:22 30 4
gpt4 key购买 nike

我有一个关于如何可能的问题(如果可能的话:)例如,使用 Type.GetType() 返回的类型引用来创建该类型的 IList?

这里是示例代码:

Type customer = Type.GetType("myapp.Customer");
IList<customer> customerList = new List<customer>(); // got an error here =[

提前致谢!

最佳答案

像这样:

Type listType = typeof(List<>).MakeGenericType(customer);
IList customerList = (IList)Activator.CreateInstance(listType);

当然不能声明为

IList<customer>

因为编译时没有定义。但是List<T>实现 IList,因此您可以使用它。

关于c# - 在 C# 中使用 Type.GetType() 返回的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/914578/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com