时间:2021-05-20
直接上代码,代码中使用四种方法遍历Hashtable。
using System;using System.Collections; namespace HashtableExample{ class Program { static Hashtable hashtable = new Hashtable(); static void Main(string[] args) { hashtable.Add("first", "Beijing"); hashtable.Add("second", "Shanghai"); hashtable.Add("third", "Hangzhou"); hashtable.Add("forth", "Nanjing"); //遍历方法一:遍历哈希表中的键 foreach (string key in hashtable.Keys) { Console.WriteLine(hashtable[key]); } Console.WriteLine("--------------------"); //遍历方法二:遍历哈希表中的值 foreach(string value in hashtable.Values) { Console.WriteLine(value); } Console.WriteLine("--------------------"); //遍历方法三:遍历哈希表中的键值 foreach (DictionaryEntry de in hashtable) { Console.WriteLine(de.Value); } Console.WriteLine("--------------------"); //遍历方法四:遍历哈希表中的键值 IDictionaryEnumerator myEnumerator = hashtable.GetEnumerator(); while (myEnumerator.MoveNext()) { Console.WriteLine(hashtable[myEnumerator.Key]); } } }}下面是代码的运行结果。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了C#使用foreach遍历哈希表(hashtable)的方法。分享给大家供大家参考。具体实现方法如下:usingSystem;usingSyste
混乱的URI编码 JavaScript中编码有三种方法:escape、encodeURI、encodeURIComponent C#中编码主要方法:Http
本文实例讲述了C#中哈希表(HashTable)用法。分享给大家供大家参考,具体如下:1.哈希表(HashTable)简述在.NETFramework中,Has
本文实例讲述了C#将hashtable值转换到数组中的方法。分享给大家供大家参考。具体如下:此代码可以将hashtable中的值通过copyto转换到一个一维数
本文实例讲述了C#简单遍历指定文件夹中所有文件的方法。分享给大家供大家参考,具体如下:C#遍历指定文件夹中的所有文件:DirectoryInfoTheFolde