Convert a Hashset to an Array In. Net

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

2

4 Answers

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);
3

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.

2

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);
1

Now you can do it even simpler, with List<T> constructor (Lists are modern Arrays :). E. g., in PowerShell:

$MyNewArray = [System.Collections.Generic.List[string]]::new($MySet)

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

David Miller

David Miller

Executive Financial & Market Analyst

David Miller brings 15 years of experience in global economics, personal finance strategy, and market dynamics. He specializes in turning complex economic trends into actionable insights for everyday readers.

Share this article
Twitter Facebook Pinterest