What is a
- preferably generic;
- unique(IComparable/IEquitable) valued
collection of objects for .NET 2?
(à la List<T>, or an equivalent of HashSet<T> from .NET 3.5, but without ordered items)
|
What is a
collection of objects for .NET 2? (à la |
||||
| show 4 more comments |
|
Unfortunately, the first good framework class for this is the HashSet, which you will only get access to with .Net 3.5. If you are stuck in previous versions., the options are not as nice. The most common is to usea Dictionary type where the Key is the value that you are trying to store. You can wrap this in your own class fairly easily. If you are willing to go outside the framework all together, there are collections of data structures for .Net, such as NGenerics. |
|||||||||
|
|
You can use the |
|||
|
|
|
What you need is a Set, as far as I remember there was no Set implementation in 2.0. You can check this out. Edit: If you really want to implement your own, something like this would do the job in expense of performance on inserts: (I did not test the functionality)
|
|||||||||||
|
|
We used to use PowerCollections Set class for that in .NET 2. It worked quite well. There was a lot of nice stuff in the library. |
|||
|
|
List<T>" in your question? It's not a unique items list. – herzmeister Feb 4 '10 at 14:34System.Core.dll, once you have a copy you can simply add a reference to the file and bundle it with your application. – Andrew Hare Feb 4 '10 at 14:38.AsReadOnly()method... :) – serhio Feb 4 '10 at 15:19