如何从asp.net中的哈希表中获取值
我在 ASP.NET 中有一个哈希表。该哈希表为一个键返回两个值。我需要从这两个值中获取相应键的第二个(2nd)值。 如何使用c#在asp.net中获取这个值
I have a hash table in asp.net. This hash table returns two values for one key. And i need to get second(2nd)value from these two values for a corresponding key.
How to get this value in asp.net using c#
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
哈希表中不可能有一个键和多个值,但您可以针对一个键存储一些值列表。给出示例代码,这样就可以理解了。
如果您要针对某个键存储多个值的列表,则可以针对该键获取第二个值。 :)
There is not such possibility in hash table that there is one key and multiple values, but it is possible that you store some list of values against a key. Give sample code , so can understand it.
If you are storing a list of multiple values against a key then it is possible to get the 2nd value against the key. :)
不太确定我是否理解。
哈希表的每个键只有一个值。该值可能是一对吗?
给出一个代码示例,我将编辑答案(如果可以的话)。
Not quite sure I understand.
A hash-table has only one value per key. Could be that the value is a pair?
Give a code example and I'll edit with an answer (if I can).