Tagged Questions
22
votes
2answers
4k views
What's the difference between SortedList and SortedDictionary?
Maybe a silly question, but is there any real practical difference between a SortedList and a SortedDictionary? Are there any circumstances where you would specifically use one and not the other?
3
votes
2answers
691 views
I have a sorted list of key/value pairs, and want to find the values adjacent to a new key
I have a list of key/value pairs (probably will be using a SortedList) and I won't be adding new values.
Instead I will be using new keys to get bounding values. For example if I have the ...