微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c# – 推荐.NET类用于集合唯一的整数?

你会推荐什么类需要保留一个唯一的整数列表?

我想要将Add()整数加入到集合中,并且还检查存在.载有().

也可以将它们作为一个字符串显示在列表中,即. “1,5,10,21”.

解决方法

HashSet

The HashSet<T> class provides high-performance set operations. A set is a collection that contains no duplicate elements,and whose elements are in no particular order…

The capacity of a HashSet<T> object is the number of elements that the object can hold. A HashSet<T> object’s capacity automatically increases as elements are added to the object.

The HashSet<T> class is based on the model of mathematical sets and provides high-performance set operations similar to accessing the keys of the 07001 or 07002 collections. In simple terms,the HashSet<T> class can be thought of as a 07001 collection without values.

A HashSet<T> collection is not sorted and cannot contain duplicate elements…

原文地址:https://www.jb51.cc/csharp/93067.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐