I'm a bit surprised by System.Collections.Generic.SortedList, in that
- It requires me to use
<key, value>
instead of<value>
(comparer) - It only allows on entry per value
These seem quirky in the way I want to use it (although I'm sure they're just right for other situations). Is there another collection that doesn't have these two characteristics?