如何从asp.net中的哈希表中获取值

发布于 2024-11-08 04:00:39 字数 87 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

╰ゝ天使的微笑 2024-11-15 04:00:39

哈希表中不可能有一个键和多个值,但您可以针对一个键存储一些值列表。给出示例代码,这样就可以理解了。

如果您要针对某个键存储多个值的列表,则可以针对该键获取第二个值。 :)

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. :)

稍尽春風 2024-11-15 04:00:39

不太确定我是否理解。

哈希表的每个键只有一个值。该值可能是一对吗?

给出一个代码示例,我将编辑答案(如果可以的话)。

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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文