美文网首页
HashSet Class

HashSet Class

作者: 忻恆 | 来源:发表于2020-01-17 10:18 被阅读0次

Namespace: System.Collections.Generic

 A set is a collection that contains no duplicate elements, and whose elements are in no particular order.

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 Dictionary <TKey,TValue> or Hashtable collections.

the HashSet<T> class can be thought of as a Dictionary<TKey,TValue> collection without values.

HashSet<T> collection is not sorted.

相关文章

网友评论

      本文标题:HashSet Class

      本文链接:https://www.haomeiwen.com/subject/ppyegctx.html