dictionary 添加数据
Posted DDLL11
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dictionary 添加数据相关的知识,希望对你有一定的参考价值。
var empList = from p in customers select new { p.Personnel_ID, p.PersonName }; var empTempList = empList.Distinct().ToList(); Dictionary<string, string> dict = new Dictionary<string, string>(); if (empTempList != null && empTempList.Count() > 0) { foreach (var item in empTempList) { dict.Add(item.Personnel_ID, item.PersonName); } } ViewBag.EmpList = dict;
以上是关于dictionary 添加数据的主要内容,如果未能解决你的问题,请参考以下文章
添加输出设置时,Swift Dictionary 为 nil
如何使用swift在字典中添加多个参数[String,Dictionary]?
如果我想从另一个片段中添加书签,为啥我的书签单词没有保存到 sqlite 数据库?