2
votes
2answers
350 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
2answers
88 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.
1
vote
1answer
134 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
84 views
Synchronization of SortedDictionary.iteri using readlock and writelock
let info = new SortedDictionary<string, string>
...
Thread A
--------
info.Add("abc", "def")
Thread B
--------
info
|> Seq.iteri (fun i value -> ...
Where do I place the readLock when I …
1
vote
1answer
97 views
How do I use Eval() to reference values in a SortedDictionary in an asp Repeater?
I thought I was clever to switch from the memory intensive DataView to SortedDictionary as a memory efficient sortable data structure. Now I have no idea how get the key and value out of the …
0
votes
2answers
256 views
SortedDictionary (C#)- change value…
In a SortedDictionary is it possible to change the value of an item ?
