vote up 14 vote down star
2

Does anyone know if there is a good equivelent to Java's Set collection in C#.

It's one of the few things I miss from having moved to C#.

I am aware that you can have a "pretend" set using a Dictionary or Hashtable and only bothering to populate the keys. But it's not very elegant.

It's wierd every other way I turn in C# somone seems to have thought of a solution and built it into the framework, except for sets...

flag

66% accept rate

8 Answers

vote up 23 vote down check

If you're using .NET 3.5, you can use HashSet<T>. It's true that .NET doesn't cater for sets as well as Java does though.

The Wintellect PowerCollections may help too.

link|flag
I hadn't noticed that being added. Microsoft have answered my prayers... – Omar Kooheji Oct 9 '08 at 9:08
does anyone know why it's called HashSet and not just Set? – Wouter Jun 24 at 7:57
I suspect that Set is a keyword in some languages, which could cause issues. – Jon Skeet Jun 24 at 8:10
Set is a keyword in VB. – Pavel Minaev Nov 26 at 1:02
vote up 5 vote down

Try HashSet

http://msdn.microsoft.com/en-us/library/bb495294.aspx

link|flag
1  
Unfortunately, HashSets weren't added until just recently. If you're working in an older version of the framework, you're going to have to stick with your munged Dictionary<> or Hashtable. – Greg D Oct 8 '08 at 16:36
vote up 4 vote down

I use Iesi.Collections http://www.codeproject.com/KB/recipes/sets.aspx

It's used in lot of OSS projects, I first came across it in NHibernate

link|flag
vote up 3 vote down

Have a look at PowerCollections over at CodePlex. Apart from Set and OrderedSet it has a few other usefull collection types such as Deque, MultiDictionary, Bag, OrderedBag, OrderedDictionary and OrderedMultiDictionary.

For more collections, there is also the C5 Generic Collection Library.

link|flag
vote up 0 vote down

You could implement your own workable set implementation in a couple of hours. I used this when I had to do it (sorry, I don't have the code handy): http://java.sun.com/j2se/1.4.2/docs/api/java/util/Set.html

link|flag
vote up 0 vote down

I had this same question for .NET, but used via Powershell 1.0

HashSet would be great, but it is not available in 2.0, but then I found this site :

link text

"a","b","b","c","a" | Select-Object -Unique

returns a b c

So while not answering the C# question, hope it may be useful to a PowerShell user.

link|flag
vote up 0 vote down

You can apply set operations to any two IEnumerables using the LINQ extension methods, which sometimes is sufficient: IEnumerable extension methods.

link|flag
If you have LINQ extension methods, you have 3.5, and therefore HashSet<T>. It's also worth noting that IEnumerable "set-like" methods are rather inefficient compared to a proper set implementation. – Pavel Minaev Nov 26 at 1:03
vote up 0 vote down

I use a wrapper around a Dictionary<T, object>, storing nulls in the values. This gives O(1) add, lookup and remove on the keys, and to all intents and purposes acts like a set.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.