Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个链接列表代码,我在其中使用了一行
GenericList<int> gll = new GenericList<int>();
但它显示名称空间丢失,我已经添加system.collection并system.collection.generic
system.collection
system.collection.generic
我谷歌它,但我无法解决这个问题。
提前致谢。
据我所知,GenericList<T>.NET Framework 中没有类型。 相反,使用List<int>.
GenericList<T>
List<int>
这不是问题的答案,而是有关创建自己的自定义 XXxxxList<> 样式集合的一些有趣信息:
从 List<T> 继承
C#:List<T> 的继承问题
(我假设您的 GenericList 类是由同事创建的,也许他/她以正确的方式或错误的方式创建了它。)