在 IList中使用 Type.GetType(string)

发布于 2024-09-06 16:56:03 字数 531 浏览 3 评论 0原文

因为我无法对此发表任何评论(只能发布答案) 发布,我将发布一个新问题。
我按照上述帖子中的说明进行操作,但代码产生错误。
代码:

Type t = Type.GetType(className);
Type listType = typeof(List<>).MakeGenericType(t);
IList list = (IList)Activator.CreateInstance(listType);

错误:

使用泛型类型“System.Collections.Generic.IList”需要“1”个类型参数

显然我不能只声明没有任何类型的IList,所以我想知道答案到底是如何的提到的帖子作品。

提前致谢。

Since I can't make any comments (only post an answer) to this post, I'll post a new question.
I followed the instructions from mentioned post, but the code produces an error.
The code:

Type t = Type.GetType(className);
Type listType = typeof(List<>).MakeGenericType(t);
IList list = (IList)Activator.CreateInstance(listType);

The error:

Using the generic type 'System.Collections.Generic.IList' requires '1' type arguments

Clearly I can't just state IList without any type, so I'm wondering how exactly does the answer from the mentioned post works.

Thanks in advance.

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

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

发布评论

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

评论(3

情绪失控 2024-09-13 16:56:03

您可以,您只需要一个不同的 using 指令:

using System.Collections;

这样您将使用非通用 IList 而不是通用的 IList

我相信这就是所引用答案的精神。

You can, you just need a different using directive:

using System.Collections;

That way you'll be using the nongeneric IList instead of the generic IList<T>.

I believe that's the spirit of the referenced answer.

转角预定愛 2024-09-13 16:56:03
Type t = Type.GetType(className);
Type listType = typeof(List<>).MakeGenericType(t);
IList list = (IList)Activator.CreateInstance(listType);

应该做到这一点。

使用 IList 接口检索对象时,必须强制转换对象,但底层 List 将强制只将类型 T 的对象添加到集合中。

Type t = Type.GetType(className);
Type listType = typeof(List<>).MakeGenericType(t);
IList list = (IList)Activator.CreateInstance(listType);

Should do the trick.

You'll have to cast the objects when retrieving them using the IList interface, but the underlying List will enforce that only objects of type T are added to the collection.

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