vote up 2 vote down star

How do I convert a HashSet<T> to an array in .NET?

flag

50% accept rate
2  
HashSet<T> is only available in .Net 3.5. As such, you can use the ToArray() Linq extension method. – adrianbanks Oct 21 at 21:23
@adrianbanks: Thanks. Anyway, I edited the question to match the answers better. – Agnel Kurian Oct 21 at 21:31

3 Answers

vote up 2 vote down

If you mean System.Collections.Generic.HashSet, it's kind of hard since that class does not exist prior to framework 3.5.

If you mean you're on 3.5, just use ToArray since HashSet implements IEnumerable, e.g.

using System.Linq;
...
HashSet<int> hs = ...
int[] entries = hs.ToArray();

If you have your own HashSet class, it's hard to say.

link|flag
See the answer to this question : stackoverflow.com/questions/687034/… – VirtualBlackFox Oct 21 at 21:24
Quote from that answer: "You can use HashSet<T> in a 2.0 application now - just reference System.Core.dll ... Note: This would require you to install the .NET 3.5 framework". IMO, if you use parts of framework 3.5, then you're using 3.5 and not 2.0. Most of the system DLLs are marked as version 2.0.0.0 even on framework 3.5. – erikkallen Oct 22 at 10:30
vote up 0 vote down

I guess

function T[] ToArray<T>(ICollection<T> collection)
{
    T[] result = new T[collection.Count];
    int i = 0;
    foreach(T val in collection)
    {
        result[i++] = val;
    }
}

as for any ICollection<T> implementation.

Actually in fact as you must reference System.Core to use the HashSet<T> class you might as well use it :

T[] myArray = System.Linq.Enumerable.ToArray(hashSet);
link|flag
Why work hard when you have CopyTo? – Vitaliy Oct 21 at 21:13
Because it's more generic (it applies to any ICollection<T>) and CopyTo require that you manually allocate the array anyway. – VirtualBlackFox Oct 21 at 21:16
vote up 6 vote down

Use the HashSet<T>.CopyTo method. This method copies the items from the HashSet<T> to an array.

So given a HashSet<String> called stringSet you would do something like this:

String[] stringArray = new String[stringSet.Count];
stringSet.CopyTo(stringArray);
link|flag

Your Answer

Get an OpenID
or

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