4
我正在使用SortedDictionary來存儲按整數排序的值。使用SortedDictionary - 獲取下一個值
我需要獲得特定現有整數後的下一個值。我寧願與統計員合作,但沒有GetEnumerator(Key k)
或類似的功能。
SortedDictionary<int, MyClass> _dict;
void GetNextValue(int start, out MyClass ret)
{
}
見:[我如何從SortedDictionary獲取上一個鍵?](http://stackoverflow.com/q/4720674/412770)。使用`SortedList <,>`可能會更好。 – Ani 2011-02-11 11:23:52