SortedDictionarykeyList = new SortedDictionary ();
foreach (JProperty jToken in JObject.Parse(paramStr).Properties())
{
keyList.Add(jToken.Name.ToString(), jToken.Value.ToString());
}
SortedList
STK.Add("1", "2");
STK.Add("3", "4");
foreach (KeyValuePair
{
Console.Write(string.Format("{0}:{1}",item.Key,item.Value));
}