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

前端之家收集整理的这篇文章主要介绍了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.f2er.com/csharp/93067.html

猜你在找的C#相关文章