本文介绍了如何显示我在哈希表中输入的键和值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我必须显示如何输入键和值的项目以控制台如何执行这些操作?

I have to display the items how i enter the key and values to console how shall i do these?

Hashtable myHashTable = new Hashtable();
			myHashTable.Add("1", "dotnet");
			myHashTable.Add("2", "tutorials");
			myHashTable.Add("3", "w3mentor");
			myHashTable.Add("11", "dotnet");
			myHashTable.Add("23", "tutorials");
			myHashTable.Add("33", "w3mentor");
			foreach (DictionaryEntry dictionaryEntry in myHashTable )
			{
				Console.WriteLine("{0}{1}",dictionaryEntry.Key,dictionaryEntry.Value);




}
在这里放出显示




}
Here Out put displayed

23tutorials
33w3mentor
11dotnet
1dotnet
2tutorials
3w3mentor

推荐答案


这篇关于如何显示我在哈希表中输入的键和值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 05:26