What is the most efficient way to store a list of strings ignoring any duplicates? I was thinking a dictionary may be best inserting strings by writing dict[str] = false; and enumerating through the keys as a list. Is that a good solution?
|
feedback
|
|
If you are using .NET 3.5, the HashSet should work for you.
| |||
|
feedback
|
|
This is not part of the the system namespace but have used the Iesi.Collections from http://www.codeproject.com/KB/recipes/sets.aspx with NHibernate. It has support for hashed set along with sorted set, dictionary set, and so on. Since it has been used with NHibernate it has been used extensively and very stable. This also does not require .Net 3.5 | |||
|
feedback
|
|
You can look to do something like this
| |||||
feedback
|