c# 對JSON字串排序(KEY/VALUE)

容忍的人其實並不是笨發表於2018-09-14
public string StortJson(string json)
{
      var dic = JsonConvert.DeserializeObject<SortedDictionary<string, object>>(json);
      SortedDictionary<string, object> keyValues = new SortedDictionary<string, object>(dic);
      keyValues.OrderBy(m => m.Key);//升序 把Key換成Value 就是對Value進行排序
      //keyValues.OrderByDescending(m => m.Key);//降序
      return JsonConvert.SerializeObject(keyValues);
}

需要新增的引用:

using System.Collections.Generic;

using System.Linq;

using Newtonsoft.Json;

相關文章