通用列表的命名空间错误

时间:2013-06-16 05:19:03

标签: c# asp.net

我有一个链接列表代码,我正在使用一行

 GenericList<int> gll = new GenericList<int>();

但它显示缺少命名空间,我添加了system.collectionsystem.collection.generic

我谷歌,但我无法解决这个问题。

提前致谢。

2 个答案:

答案 0 :(得分:3)

据我所知,.NET Framework中没有GenericList<T>类型 相反,请使用List<int>

答案 1 :(得分:0)

这不是问题的答案,而是关于创建自己的自定义XxxxxList&lt;&gt; -style集合的一些有趣信息:

Inheriting from List<T>

C#: Inheritance Problem with List<T>

(我假设您的GenericList类是由同事创建的,也许他/她以正确的方式做到了,或者可能是错误的方式。)