Tagged Questions

11
votes
4answers
3k views

No generic implementation of OrderedDictionary?

I'm using .NET 3.5. I think I know the answer to this, but am looking for confirmation so should be a quick one! There doesn't appear to be a generic implementation of OrderedDictionary (which is in ...
6
votes
1answer
485 views

Why no generic implementation of OrderedDictionary? [closed]

Why is there no generic implementation of OrderedDictionary? Prior to posting this message, i did see: http://stackoverflow.com/questions/2629027/no-generic-implementation-of-ordereddictionary But ...
6
votes
8answers
992 views

What is the best data structure in .NET for look-up by string key or numeric index?

I'm looking for the most ideal data structure (for performance and ease of use) from which values can be retrieved by string key or index. Dictionary doesn't work because you can't really retrieve by ...
4
votes
3answers
194 views

Is there any alternative of Dictionary in .NET?

I have a requirement of using a dictionary in the project but as we know that they are only accessible using the keys and not using the indexes, and I want to access the items in dictionary using ...
0
votes
2answers
143 views

Saving/Loading OrderedDictionary to Session

I am trying to save the OrderedDictionary into the session and reload it. basically, it is a "Last Played" game list. for some reason, the dictionary is allays NEW .... anyone can pinpoint the ...