I see this question.
How can I get the last element in a SortedDictionary in .Net 3.5.
|
I see this question. How can I get the last element in a SortedDictionary in .Net 3.5.
| ||||
|
feedback
|
|
You can use LINQ:
You can also get the last key:
You can even get the last key-value pair:
This will give you a Note that this will throw an exception if the dictionary is empty; if you don't want that, call | |||
|
feedback
|
|
You can use or if you want the key and the value
| |||
|
feedback
|