How do I convert an array to a hash set ?
string[] BlockedList = BlockList.Split(new char[] { ';' },
StringSplitOptions.RemoveEmptyEntries);
I need to convert this list to a hashset.
|
|
You do not specify what type
|
|||||||||
|
|
I'm assuming BlockList is a string (hence the call to Split) which returns a string array. Just pass the array (which implements IEnumerable) to the constructor of the HashSet:
|
|||
|
|
|
Here is an extension method that will generate a HashSet from any IEnumerable:
To use it with your example above:
|
||||
|
|
|
Missed new keyword on extension example....
|
|||
|
|