我发现 SortedList<TKey, TValue>
SortedDictionary<TKey, TValue>
和 Dictionary<TKey, TValue>
实现了相同的接口(interface)。
SortedList
和 SortedDictionary
而不是 Dictionary
? SortedList
和SortedDictionary
在应用上有什么区别? 最佳答案
Dictionary<T,V>
并非如此。 SortedList<T,V>
和 SortedDictionary<T,V>
之间的差异:关于c# - SortedList<>、SortedDictionary<> 和 Dictionary<>,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1427147/