Dictionary<int, string> objDictionary = new Dictionary<int, string>(); objDictionary.Add(, "张三"); objDictionary.Add(, "李四"); objDictionary.Add(, "王二麻子"); objDictionary.Add(, "小淘气"); foreach (KeyValuePair<int, string> item in objDictionary) { Console.Write(string.Format("学号:{0} 姓名:{1}", item.Key, item.Value)); } //或者使用护展方法实现 objDictionary.ForEach(s => Console.Write(string.Format("学号:{0} 姓名:{1}", s.Key, s.Value)));
相关文章
- SWUST数据结构--先序遍历二叉树叶结点的个数
- 数据结构--二叉树的创建、先序遍历、中序遍历、后序遍历、深度、叶子结点数
- Dump中查看dictionary信息的方法
- Oracle 9i的OEM连接10g的服务器,报“您必须具有SELECT ANY DICTIONARY权限才能运行此应用程序。请要求DBA为您授予此权限。”的错误
- tree的遍历--广度优先遍历
- 遍历Collection集合中的6种方法:
- HashMap集合遍历的三种方法
- java-遍历集合的方式总结
- Properties常见用法汇总/properties遍历/properties获取系统的属性集合/Properties模拟系统属性集合的操作
- 对于json对像,怎么遍历json对象的所有key,在使用json对象时,如果无法知道key,怎么通过key变量来获取值