How do I convert a HashSet<T> to an array in .NET?
|
|
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.
If you have your own HashSet class, it's hard to say. |
||||
|
|
|
I guess
as for any Actually in fact as you must reference
|
||||
|
|
|
Use the So given a
|
|||
|
|

HashSet<T>is only available in .Net 3.5. As such, you can use theToArray()Linq extension method. – adrianbanks Oct 21 at 21:23