c#中, 字典按key升序排列 2023-07-02 本文已影响0人 全新的饭 var orderedDict = dict.OrderBy(o => o.Key).ToDictionary(o => o.Key, p => p.Value);