似是而非

导航

2012年10月19日 #

c#遍历Dictionary

摘要: Dictionary<string, string> dic = new Dictionary<string, string>();foreach (KeyValuePair<string, string> kvp in dic ){ Console.Write(kvp.Key); Console.Write(kvp.Value);} 阅读全文

posted @ 2012-10-19 16:51 似是而非 阅读(190) 评论(0) 推荐(0) 编辑