摘要: 如果使用.Net Framework 3.5的话,事情就很简单了。呵呵。 如果不是的话,还是自己写排序吧。 using System; using System.Collections.Generic; using System.Text; using System.Linq; namespace DictionarySorting { class Program { static void Main(string[] args) { Dictionary<int, string> dic = new Dictionary<int, string>(); dic.Add 阅读全文
posted @ 2012-03-14 13:47 clown 阅读(333) 评论(0) 推荐(0) 编辑