我有一個SortedDictionary,鍵是一個int值,每個鍵的匹配值是一個類對象。該類包含一個int和一個兩個datetime變量。基於值排序SortedDictionary,而不是鍵
我需要根據我的類中的InTime日期時間對我的SortedDictionary進行排序。所以當我做一個foreach循環訪問SortedDictionary時,我會根據datetime對它們進行排序。
這可能嗎?我怎樣才能實現它?
enter code here
class Busdetail
{
public int BusNo { get; set; }
public DateTime InTime { get; set; }
public DateTime OutTime { get; set; }
}
可能的重複http://stackoverflow.com/questions/289/how-do-you-sort-ac-dictionary-by-value – WildCrustacean 2010-08-05 17:20:48
可能重複的[.NET SortedDictionary,但按值排序](http:/ /stackoverflow.com/questions/2619051/net-sorteddictionary-but-sorted-by-values) – nawfal 2014-05-22 05:28:46