如何使用 .Where 访问字典中的值?

发布于 2024-12-10 13:38:39 字数 149 浏览 0 评论 0原文

我只想要 id 等于“zj”的任何值

Dictionary<string,string> z = dm.UpdateAndReturnIdol(User, id, v).where(keys.equals("zj"));

I just want any value where the id equals a "zj"

Dictionary<string,string> z = dm.UpdateAndReturnIdol(User, id, v).where(keys.equals("zj"));

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

撩起发的微风 2024-12-17 13:38:39

如果返回类型是 Dictionary 那么你可以只查找值,例如

Dictionary<string, string> dictionary =  dm.UpdateAndReturnIdol(User, id, v);
string value = dictionary["zj"];

,或者如果你不知道是否会有一个条目:

Dictionary<string, string> dictionary =  dm.UpdateAndReturnIdol(User, id, v);
string value;
if (dictionary.TryGetValue("zj", out value))
{
    // Use the value
}

没有必要使用 这里 - 字典的整个是你可以通过键有效地查找......并且每个键只能有一个值,所以不需要获取 < em>值序列。

If the return type is Dictionary<string, string> then you can just look up the value, e.g.

Dictionary<string, string> dictionary =  dm.UpdateAndReturnIdol(User, id, v);
string value = dictionary["zj"];

or if you don't know whether there will be an entry:

Dictionary<string, string> dictionary =  dm.UpdateAndReturnIdol(User, id, v);
string value;
if (dictionary.TryGetValue("zj", out value))
{
    // Use the value
}

There's no need to use Where here - the whole point of a dictionary is that you can look up by key efficiently... and there can only be one value per key, so there's no need to get a sequence of values.

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