我想创建一个使用HashSet<int>
. 我希望它使用该内部容器跟踪集合中包含哪些值。到目前为止,我已经这样做了:
class SetInteger
{
HashSet<int> intTest= new HashSet<int>();
intTest.Add(1);
intTest.Add(2);
intTest.Add(3);
intTest.Add(4);
intTest.Add(5);
intTest.Add(6);
intTest.Add(7);
intTest.Add(8);
intTest.Add(9);
intTest.Add(10);
}
所以,在这里我想我正在向 中添加一些值HashSet
,但我看不出它如何跟踪集合中包含的值。有任何想法吗?