3
votes
2answers
78 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 …
1
vote
2answers
176 views
Get last element in a SortedDictionary
I see this question.
How can I get the last element in a SortedDictionary in .Net 3.5.
4
votes
2answers
534 views
When to use a SortedList<TKey, TValue> over a SortedDictionary<TKey, TValue>?
This may appear to be a duplicate of this question, which asks "What’s the difference between SortedList and SortedDictionary?" Unfortunately, the answers do nothing more than quote the MSDN …
1
vote
1answer
172 views
Setting the i-th value of a SortedDictionary
I need to set the value of an element in my sortedDictionary, accessed by index.
I.e.
sortedDictionary.Values[index] = value; // compile error
Note that the following is incorrect because it's …
0
votes
2answers
304 views
SortedDictionary (C#)- change value…
In a SortedDictionary is it possible to change the value of an item ?
