using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication4 { class Program { static void Main(string[] args) { Hashtable ht = new Hashtable(); ht.Add(1, "hello"); ht.Add(2,"world"); ht.Add(1, 1); foreach (var item in ht.Keys)//由键找值 { Console.WriteLine("键是{0},对应的值是{1}",item,ht[item]); } Console.ReadKey(); } } }
那么该如何解决呢?
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication4 { class Program { static void Main(string[] args) { Hashtable ht = new Hashtable(); ht.Add(1, "hello"); ht.Add(2,"world"); if (!ht.ContainsKey(1)) { ht.Add(1, 1); } else { Console.WriteLine("不可以添加"); } foreach (var item in ht.Keys)//由键找值 { Console.WriteLine("键是{0},对应的值是{1}",item,ht[item]); } Console.ReadKey(); } } }
感恩曾经帮助过 心少朴 的人。
C#优秀,值得学习。Console,ASP.NET,Winform,WPF,设计模式等都可以关注一下,眼界要开阔。
Visual Studio IDE很好用,推荐!
注:此文是自学笔记所生,质量中等,故要三思而后行。新手到此,不可照搬,应先研究其理象数,待能变通之时,自然跳出深坑。