摘要: SortedList sl = new SortedList(); sl["c"] = 41; sl["a"] = 42; sl["d"] = 11; sl["b"] = 13; //排序 foreach (DictionaryEntry element in sl) { string s = (string)element.Key; int i = (int)element.Value; thi... 阅读全文
posted @ 2010-01-25 23:24 vhtt 阅读(660) 评论(0) 推荐(0)
摘要: http://hi.baidu.com/sonmeika/blog/item/5a7c89af70f64ecf7cd92a1d.html 阅读全文
posted @ 2010-01-25 23:22 vhtt 阅读(146) 评论(0) 推荐(0)