首页 > 代码库 > 键值对拼接的妙用
键值对拼接的妙用
参考自百科的这篇文章,相信聪明的你一定能够看懂。
var sb = new StringBuilder(); var dict = new Dictionary<string, string>(); dict.Add("1","a"); dict.Add("2", "b"); dict.Add("3", "c"); dict.Add("4", "d"); dict.Add("5", "e"); foreach (var kv in dict) sb.AppendFormat("{0}={1}&", kv.Key, kv.Value); string str = sb.ToString(); string stt = str.Remove(str.Length-1);
优化后:
var sb = new StringBuilder(); var dict = new Dictionary<string, string> {{"1", "a"}, {"2", "b"}, {"3", "c"}, {"4", "d"}, {"5", "e"}}; foreach (var kv in dict) sb.AppendFormat("{0}={1}&", kv.Key, kv.Value); string str = sb.ToString(); string stt = str.Remove(str.Length-1);
我的c#能力在以看得见的速度增长着,codding之余更多了一份快乐和自信。可是,改变了我的生命中的那座城中的她,去了哪里,我该怎样才能找到她。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。