Dictionary dic = new Dictionary(); SortedDictionary를 사용하여 정렬할 수 있다. SortedDictionary sorted_dic = new SortedDictionary(dic); 오름차순 정렬 foreach (KeyValuePair data in sorted_dic) { Console.WriteLine("문자열 : " + data.Key + ", 수치 : " + data.Value); } using System.Linq; 내림차순 정렬 foreach (KeyValuePair data in sorted_dic.Reverse()) { Console.WriteLine("문자열 : " + data.Key + ", 수치 : " + data.Value); } 열심히 정렬..