添加元素的简单通用集合
我应该使用 C# 中的哪个集合仅支持添加元素的通用? 我尝试使用 ArrayList,但我发现它是非泛型类型。
抱歉,如果这是重复的。谢谢。
What collection should I use from C# that suports generic only for adding elements ?
I tried using ArrayList
, but I see that it's a non-generic type.
Sorry if this is a duplicate. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
基本的通用集合是
List
。它位于 System.Collections.Generic 命名空间中。例如,您可以这样使用它:
这里 是C# 中的所有泛型集合
Basic generic collection is
List<T>
. It is in System.Collections.Generic namespace.You can use it for example this way:
Here is all the generic collections in C#
这些是您正在寻找的东西吗?我不太明白这个问题。
希望这有帮助
Are these the kind of things you're looking for? I don't really understand the question.
Hope this helps
你可能在寻找List。如果您想要唯一元素的集合,请考虑使用 HashSet。
You're probably after List. If you want a collection of unique elements, consider HashSet instead.