C# 中HashTable的用法,请帮忙!

请问HashTable中有没有取得对应Key键对应的值?usingSystem;usingSystem.Collections.Generic;usingSystem.L... 请问HashTable中有没有取得对应Key键对应的值? using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Collections; namespace HashConnect { class Program { static void Main(string[] args) { Hashtable table = new Hashtable(); table.Add("one", "亲爱的姑娘我爱你"); table.Add("two", "亲爱的同学我想你"); table.Add("three", "亲爱的老师我永远记住你"); table.Add("four", "亲爱的父母我愿永远和你在一起"); PrintKeyAndValues(table); } public static void PrintKeyAndValues(Hashtable table) { Console.WriteLine("\t-KEY-\t-VALUE-"); foreach (DictionaryEntry de in table) Console.WriteLine("\t{0}:\t{1}", de.Key, de.Value); Console.ReadKey(); } } } 展开
 我来答
乘明辉3i
2014-07-20 · 超过77用户采纳过TA的回答
知道答主
回答量:149
采纳率:100%
帮助的人:72.1万
展开全部
hashtable实现了索引器,因此你想取key为"two"的值,非常容易,object value = table["two"];就可以了 因为返回值是object类型,如果前提确定时string型,可以string value = (string)table["two"];
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
NO4iC齍
2014-07-19 · TA获得超过112个赞
知道答主
回答量:183
采纳率:75%
帮助的人:56.3万
展开全部
集合类型ICollection,都可以用Get去获取 也可以用Set去设置, 但通常这些类都实现了索引器,即 this 用法就是["KEY"] 它等同Get Set
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式