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…

相关文章

在要实现单例模式的类当中添加如下代码:实例化的时候:frmC...
1、如果制作圆角窗体,窗体先继承DOTNETBAR的:public parti...
根据网上资料,自己很粗略的实现了一个winform搜索提示,但是...
近期在做DSOFramer这个控件,打算自己弄一个自定义控件来封装...
今天玩了一把WMI,查询了一下电脑的硬件信息,感觉很多代码都...
最近在研究WinWordControl这个控件,因为上级要求在系统里,...