摘要: class Program { static void Main() { //构造一个嵌套字典 Dictionary<int, Dictionary<int, string>> dicExternal = new Dictionary<int, Dictionary<int, string>>(); for (int i = 90; i > 65; i = i - 5) { Dictionary<int, string> dicInternal = new Dictionary<int, string>(); for 阅读全文
posted @ 2012-05-18 23:48 wangchao 阅读(2981) 评论(0) 推荐(0) 编辑
摘要: class Program { static void Main() { string[] s = new string[6] { "浏览器类_Firefox", "浏览器类_IE", "文字处理_Word", "文字处理_WPS", "电子地图_google地图", "电子地图_百度地图" }; Dictionary<string, List<string>> kk = new Dictionary<string, List<string 阅读全文
posted @ 2012-05-18 23:46 wangchao 阅读(616) 评论(0) 推荐(0) 编辑