tangxu
2024-10-14 6cd995b71dfc74d4d96347d0bc535fddf36fa9df
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
 * 2013-03-08 toAtWork
 * HashSet implementation for .net 2.0.
*/
 
using System.Collections;
using System.Collections.Generic;
 
namespace System.Windows.Forms
{
    /// <summary>
    /// There is no HashSet&lt;T&gt; available in .net 2.0.
    /// </summary>
    /// <typeparam name="T">Der Typ des Sets</typeparam>
    [Serializable]
    public class Set<T> : ICollection<T>, IEnumerable<T>, IEnumerable
    {
        private readonly Dictionary<T, object> _items = new Dictionary<T, object>();
 
        #region ICollection<T>
 
        public void Add(T item)
        {
            if (item == null)
                return;
            _items[item] = null;
        }
 
        public void Clear()
        {
            _items.Clear();
        }
 
        public bool Contains(T item)
        {
            if (item == null)
                return false;
            return _items.ContainsKey(item);
        }
 
        public void CopyTo(T[] array, int arrayIndex)
        {
            _items.Keys.CopyTo(array, arrayIndex);
        }
 
        public int Count => _items.Count;
 
        public bool IsReadOnly => false;
 
        public bool Remove(T item)
        {
            if (item == null)
                return false;
            return _items.Remove(item);
        }
 
        public IEnumerator<T> GetEnumerator()
        {
            return _items.Keys.GetEnumerator();
        }
 
        IEnumerator IEnumerable.GetEnumerator()
        {
            return _items.Keys.GetEnumerator();
        }
 
        #endregion
 
        public void AddRange(IEnumerable<T> items)
        {
            if (items == null)
                return;
            foreach (T item in items)
                Add(item);
        }
 
        public T[] ToArray()
        {
            T[] array = new T[_items.Count];
            CopyTo(array, 0);
            return array;
        }
    }
 
}