Using HashSet in C# 2.0, compatible with 3.5 - Stack Overflow most recent 30 from stackoverflow.com 2010-03-17T06:33:39Z http://stackoverflow.com/feeds/question/687034 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/687034/using-hashset-in-c-2-0-compatible-with-3-5 2 Using HashSet in C# 2.0, compatible with 3.5 Brian http://stackoverflow.com/users/18192 2009-03-26T18:35:10Z 2009-04-02T20:32:48Z <p>I really want to use hashsets in my program. Using a dictionary feels ugly. I'll probably start using VS2008 with .Net 3.5 some day, so my ideal would be that even though I can't (or can I?) use <a href="http://msdn.microsoft.com/en-us/library/bb359438.aspx" rel="nofollow">hashsets</a> in VS2005, when I start using .NET 3.5, I don't want to have to change much, if anything, in order to switch to using these hashsets.</p> <p>I am wondering if anyone is aware of an existing hashset implementation designed with this in mind, or a way to use the 3.5 hashset in VS2005.</p> http://stackoverflow.com/questions/687034/using-hashset-in-c-2-0-compatible-with-3-5/687042#687042 11 Answer by Andrew Hare for Using HashSet in C# 2.0, compatible with 3.5 Andrew Hare http://stackoverflow.com/users/34211 2009-03-26T18:37:18Z 2009-03-26T18:45:55Z <p>You can use <code>HashSet&lt;T&gt;</code> in a 2.0 application now - just reference System.Core.dll and you should be good to go.</p> <p><strong>Note:</strong> This would require you to install the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=AB99342F-5D1A-413D-8319-81DA479AB0D7&amp;displaylang=en" rel="nofollow">.NET 3.5 framework</a> which is free and separate from Visual Studio. Once you have that installed you will have the new System.Core assembly which contains the <code>HashSet&lt;T&gt;</code> type. Since the .NET frameworks versions 2.0 - 3.5 all share the same CLR you can use this assembly in your 2.0 application without any issues.</p> http://stackoverflow.com/questions/687034/using-hashset-in-c-2-0-compatible-with-3-5/687044#687044 0 Answer by Joel Coehoorn for Using HashSet in C# 2.0, compatible with 3.5 Joel Coehoorn http://stackoverflow.com/users/3043 2009-03-26T18:37:34Z 2009-03-26T18:37:34Z <p>You can alias the Dictionary as Hashset with a using directive. Not really the same thing, but it might simplify things for you later.</p> http://stackoverflow.com/questions/687034/using-hashset-in-c-2-0-compatible-with-3-5/687083#687083 1 Answer by Igor Brejc for Using HashSet in C# 2.0, compatible with 3.5 Igor Brejc http://stackoverflow.com/users/55408 2009-03-26T18:49:42Z 2009-03-26T18:49:42Z <p>I think <a href="http://www.codeplex.com/PowerCollections" rel="nofollow">PowerCollections</a> library should fit your needs. It's an open source library that contains several collection classes that were missing in .NET, including <code>Set&lt;T&gt;</code>, <code>Bag&lt;T&gt;</code>, <code>MultiDictionary</code> etc. It runs on .NET 2.0. I've been using it for couple of years now and I'm very pleased with it.</p> http://stackoverflow.com/questions/687034/using-hashset-in-c-2-0-compatible-with-3-5/687094#687094 3 Answer by Mauricio Scheffer for Using HashSet in C# 2.0, compatible with 3.5 Mauricio Scheffer http://stackoverflow.com/users/21239 2009-03-26T18:52:24Z 2009-03-26T18:52:24Z <p>You could use <a href="http://www.google.com/search?q=iesi%2Bcollections%2Bgeneric" rel="nofollow">Iesi.Collections</a> (used by NHibernate) or <a href="http://anonsvn.mono-project.com/viewvc/trunk/mcs/class/System.Core/System.Collections.Generic/HashSet.cs" rel="nofollow">Mono's HashSet</a></p> http://stackoverflow.com/questions/687034/using-hashset-in-c-2-0-compatible-with-3-5/687714#687714 1 Answer by Luke for Using HashSet in C# 2.0, compatible with 3.5 Luke http://stackoverflow.com/users/55847 2009-03-26T21:55:13Z 2009-03-26T21:55:13Z <p>The <a href="http://www.itu.dk/research/c5/" rel="nofollow">C5 Library</a> also has a HashSet implementation.</p> http://stackoverflow.com/questions/687034/using-hashset-in-c-2-0-compatible-with-3-5/711335#711335 4 Answer by Chris Doggett for Using HashSet in C# 2.0, compatible with 3.5 Chris Doggett http://stackoverflow.com/users/64203 2009-04-02T19:53:41Z 2009-04-02T20:32:48Z <p>Here's one I wrote for 2.0 that uses a Dictionary&lt;T, object&gt; internally. It's not an exact match of the 3.5 HashSet&lt;T&gt;, but it does the job for me.</p> <pre><code>using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; public class HashSet&lt;T&gt; : ICollection&lt;T&gt;, ISerializable, IDeserializationCallback { private readonly Dictionary&lt;T, object&gt; dict; public HashSet() { dict = new Dictionary&lt;T, object&gt;(); } public HashSet(IEnumerable&lt;T&gt; items) : this() { if (items == null) { return; } foreach (T item in items) { Add(item); } } public HashSet&lt;T&gt; NullSet { get { return new HashSet&lt;T&gt;(); } } #region ICollection&lt;T&gt; Members public void Add(T item) { if (null == item) { throw new ArgumentNullException("item"); } dict[item] = null; } /// &lt;summary&gt; /// Removes all items from the &lt;see cref="T:System.Collections.Generic.ICollection`1"/&gt;. /// &lt;/summary&gt; /// &lt;exception cref="T:System.NotSupportedException"&gt;The &lt;see cref="T:System.Collections.Generic.ICollection`1"/&gt; is read-only. &lt;/exception&gt; public void Clear() { dict.Clear(); } public bool Contains(T item) { return dict.ContainsKey(item); } /// &lt;summary&gt; /// Copies the items of the &lt;see cref="T:System.Collections.Generic.ICollection`1"/&gt; to an &lt;see cref="T:System.Array"/&gt;, starting at a particular &lt;see cref="T:System.Array"/&gt; index. /// &lt;/summary&gt; /// &lt;param name="array"&gt;The one-dimensional &lt;see cref="T:System.Array"/&gt; that is the destination of the items copied from &lt;see cref="T:System.Collections.Generic.ICollection`1"/&gt;. The &lt;see cref="T:System.Array"/&gt; must have zero-based indexing.&lt;/param&gt;&lt;param name="arrayIndex"&gt;The zero-based index in &lt;paramref name="array"/&gt; at which copying begins.&lt;/param&gt;&lt;exception cref="T:System.ArgumentNullException"&gt;&lt;paramref name="array"/&gt; is null.&lt;/exception&gt;&lt;exception cref="T:System.ArgumentOutOfRangeException"&gt;&lt;paramref name="arrayIndex"/&gt; is less than 0.&lt;/exception&gt;&lt;exception cref="T:System.ArgumentException"&gt;&lt;paramref name="array"/&gt; is multidimensional.-or-&lt;paramref name="arrayIndex"/&gt; is equal to or greater than the length of &lt;paramref name="array"/&gt;.-or-The number of items in the source &lt;see cref="T:System.Collections.Generic.ICollection`1"/&gt; is greater than the available space from &lt;paramref name="arrayIndex"/&gt; to the end of the destination &lt;paramref name="array"/&gt;.-or-Type T cannot be cast automatically to the type of the destination &lt;paramref name="array"/&gt;.&lt;/exception&gt; public void CopyTo(T[] array, int arrayIndex) { if (array == null) throw new ArgumentNullException("array"); if (arrayIndex &lt; 0 || arrayIndex &gt;= array.Length || arrayIndex &gt;= Count) { throw new ArgumentOutOfRangeException("arrayIndex"); } dict.Keys.CopyTo(array, arrayIndex); } /// &lt;summary&gt; /// Removes the first occurrence of a specific object from the &lt;see cref="T:System.Collections.Generic.ICollection`1"/&gt;. /// &lt;/summary&gt; /// &lt;returns&gt; /// true if &lt;paramref name="item"/&gt; was successfully removed from the &lt;see cref="T:System.Collections.Generic.ICollection`1"/&gt;; otherwise, false. This method also returns false if &lt;paramref name="item"/&gt; is not found in the original &lt;see cref="T:System.Collections.Generic.ICollection`1"/&gt;. /// &lt;/returns&gt; /// &lt;param name="item"&gt;The object to remove from the &lt;see cref="T:System.Collections.Generic.ICollection`1"/&gt;.&lt;/param&gt;&lt;exception cref="T:System.NotSupportedException"&gt;The &lt;see cref="T:System.Collections.Generic.ICollection`1"/&gt; is read-only.&lt;/exception&gt; public bool Remove(T item) { return dict.Remove(item); } /// &lt;summary&gt; /// Gets the number of items contained in the &lt;see cref="T:System.Collections.Generic.ICollection`1"/&gt;. /// &lt;/summary&gt; /// &lt;returns&gt; /// The number of items contained in the &lt;see cref="T:System.Collections.Generic.ICollection`1"/&gt;. /// &lt;/returns&gt; public int Count { get { return dict.Count; } } /// &lt;summary&gt; /// Gets a value indicating whether the &lt;see cref="T:System.Collections.Generic.ICollection`1"/&gt; is read-only. /// &lt;/summary&gt; /// &lt;returns&gt; /// true if the &lt;see cref="T:System.Collections.Generic.ICollection`1"/&gt; is read-only; otherwise, false. /// &lt;/returns&gt; public bool IsReadOnly { get { return false; } } #endregion public HashSet&lt;T&gt; Union(HashSet&lt;T&gt; set) { HashSet&lt;T&gt; unionSet = new HashSet&lt;T&gt;(this); if (null == set) { return unionSet; } foreach (T item in set) { if (unionSet.Contains(item)) { continue; } unionSet.Add(item); } return unionSet; } public HashSet&lt;T&gt; Subtract(HashSet&lt;T&gt; set) { HashSet&lt;T&gt; subtractSet = new HashSet&lt;T&gt;(this); if (null == set) { return subtractSet; } foreach (T item in set) { if (!subtractSet.Contains(item)) { continue; } subtractSet.dict.Remove(item); } return subtractSet; } public bool IsSubsetOf(HashSet&lt;T&gt; set) { HashSet&lt;T&gt; setToCompare = set ?? NullSet; foreach (T item in this) { if (!setToCompare.Contains(item)) { return false; } } return true; } public HashSet&lt;T&gt; Intersection(HashSet&lt;T&gt; set) { HashSet&lt;T&gt; intersectionSet = NullSet; if (null == set) { return intersectionSet; } foreach (T item in this) { if (!set.Contains(item)) { continue; } intersectionSet.Add(item); } foreach (T item in set) { if (!Contains(item) || intersectionSet.Contains(item)) { continue; } intersectionSet.Add(item); } return intersectionSet; } public bool IsProperSubsetOf(HashSet&lt;T&gt; set) { HashSet&lt;T&gt; setToCompare = set ?? NullSet; // A is a proper subset of a if the b is a subset of a and a != b return (IsSubsetOf(setToCompare) &amp;&amp; !setToCompare.IsSubsetOf(this)); } public bool IsSupersetOf(HashSet&lt;T&gt; set) { HashSet&lt;T&gt; setToCompare = set ?? NullSet; foreach (T item in setToCompare) { if (!Contains(item)) { return false; } } return true; } public bool IsProperSupersetOf(HashSet&lt;T&gt; set) { HashSet&lt;T&gt; setToCompare = set ?? NullSet; // B is a proper superset of a if b is a superset of a and a != b return (IsSupersetOf(setToCompare) &amp;&amp; !setToCompare.IsSupersetOf(this)); } public List&lt;T&gt; ToList() { return new List&lt;T&gt;(this); } #region Implementation of ISerializable /// &lt;summary&gt; /// Populates a &lt;see cref="T:System.Runtime.Serialization.SerializationInfo"/&gt; with the data needed to serialize the target object. /// &lt;/summary&gt; /// &lt;param name="info"&gt;The &lt;see cref="T:System.Runtime.Serialization.SerializationInfo"/&gt; to populate with data. &lt;/param&gt;&lt;param name="context"&gt;The destination (see &lt;see cref="T:System.Runtime.Serialization.StreamingContext"/&gt;) for this serialization. &lt;/param&gt;&lt;exception cref="T:System.Security.SecurityException"&gt;The caller does not have the required permission. &lt;/exception&gt; public void GetObjectData(SerializationInfo info, StreamingContext context) { if (info == null) throw new ArgumentNullException("info"); dict.GetObjectData(info, context); } #endregion #region Implementation of IDeserializationCallback /// &lt;summary&gt; /// Runs when the entire object graph has been deserialized. /// &lt;/summary&gt; /// &lt;param name="sender"&gt;The object that initiated the callback. The functionality for this parameter is not currently implemented. &lt;/param&gt; public void OnDeserialization(object sender) { dict.OnDeserialization(sender); } #endregion #region Implementation of IEnumerable /// &lt;summary&gt; /// Returns an enumerator that iterates through the collection. /// &lt;/summary&gt; /// &lt;returns&gt; /// A &lt;see cref="T:System.Collections.Generic.IEnumerator`1"/&gt; that can be used to iterate through the collection. /// &lt;/returns&gt; /// &lt;filterpriority&gt;1&lt;/filterpriority&gt; public IEnumerator&lt;T&gt; GetEnumerator() { return dict.Keys.GetEnumerator(); } /// &lt;summary&gt; /// Returns an enumerator that iterates through a collection. /// &lt;/summary&gt; /// &lt;returns&gt; /// An &lt;see cref="T:System.Collections.IEnumerator"/&gt; object that can be used to iterate through the collection. /// &lt;/returns&gt; /// &lt;filterpriority&gt;2&lt;/filterpriority&gt; IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } #endregion } </code></pre>