對一個Dictionary<TKey, TValue>進行鍵排序可以直接用SortedDictionary, SortedDictionary<TKey, TValue> 泛型類是檢索運算複雜度為 O(log n) 的二叉搜尋樹,其中 n 是字典中的元素數。 就這一點而言,它與 SortedList<TKey, TValue> 泛型類相似。 這兩個類具有相似的物件模型,並且都具有 O(log n) 的檢索運算複雜度。這兩個類的區別在於記憶體的使用以及插入和移除元素的速度:SortedList<TKey, TValue> 使用的記憶體比 SortedDictionary<TKey, TValue> 少,SortedDictionary<TKey, TValue> 可對未排序的資料執行更快的插入和移除操作:它的時間複雜度為 O(log n),而 SortedList<TKey, TValue> 為 O(n),如果使用排序資料一次性填充列表,則 SortedList<TKey, TValue> 比 SortedDictionary<TKey, TValue> 快。每個鍵/值對都可以作為 KeyValuePair<TKey, TValue> 結構進行檢索,或作為 DictionaryEntry 通過非泛型 IDictionary 介面進行檢索。只要鍵用作 SortedDictionary<TKey, TValue> 中的鍵,它們就必須是不可變的。 SortedDictionary<TKey, TValue> 中的每個鍵必須是唯一的。 鍵不能為 null,但是如果實值型別 TValue 為參考型別,該值則可以為空白。SortedDictionary<TKey, TValue> 需要比較子實現來執行鍵比較。 可以使用一個接受 comparer 參數的建構函式來指定 IComparer<T> 泛型介面的實現;如果不指定實現,則使用預設的泛型比較子 Comparer<T>.Default。 如果類型 TKey 實現 System.IComparable<T> 泛型介面,則預設比較子使用該實現。
對一個Dictionary<TKey, TValue>進行值排序可以用LINQ:
Dictionary<string, string> MyDictionary = new Dictionary<string, string>();
MyDictionary = (from entry in MyDictionary
orderby entry.Value ascending
select entry).ToDictionary(pair => pair.Key, pair => pair.Value);