摘要: Dictionary<int, int> dict = new Dictionary<int, int>(); dict.Add(200, 1); dict.Add(100, 2); dict.Add(50, 3); dict.Add(20, 4); foreach( KeyValuePair<int,int> entry in dict) { Console.... 阅读全文
posted @ 2009-05-14 11:56 何翔华 阅读(352) 评论(0) 推荐(0) 编辑