添加元素的简单通用集合

发布于 2024-12-03 18:38:54 字数 85 浏览 2 评论 0原文

我应该使用 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 技术交流群。

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

发布评论

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

评论(4

月下客 2024-12-10 18:38:54

基本的通用集合是List。它位于 System.Collections.Generic 命名空间中。

例如,您可以这样使用它:

List<string> listOfStrings = new List<string>() { "This", "is", "list", "of", "strings" }

这里 是C# 中的所有泛型集合

Basic generic collection is List<T>. It is in System.Collections.Generic namespace.

You can use it for example this way:

List<string> listOfStrings = new List<string>() { "This", "is", "list", "of", "strings" }

Here is all the generic collections in C#

盛装女皇 2024-12-10 18:38:54
System.Collections.Generic.List<T>
System.Collections.Generic.List<T>
夏日落 2024-12-10 18:38:54
List<T>, IEnumerable<T>, ..

这些是您正在寻找的东西吗?我不太明白这个问题。

希望这有帮助

List<T>, IEnumerable<T>, ..

Are these the kind of things you're looking for? I don't really understand the question.

Hope this helps

定格我的天空 2024-12-10 18:38:54

你可能在寻找List。如果您想要唯一元素的集合,请考虑使用 HashSet

You're probably after List. If you want a collection of unique elements, consider HashSet instead.

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