gpt4 book ai didi

c# - 使用字典值获取字典键

转载 作者:IT王子 更新时间:2023-10-29 04:19:54 26 4
gpt4 key购买 nike

如何通过字典值获取字典键?

使用键获取值时是这样的:

Dictionary<int, string> dic = new Dictionary<int, string>();

dic.Add(1, "a");

Console.WriteLine(dic[1]);
Console.ReadLine();

如何反其道而行之?

最佳答案

字典实际上是为从 Key->Value 进行单向查找而设计的。

您可以使用 LINQ 做相反的事情:

var keysWithMatchingValues = dic.Where(p => p.Value == "a").Select(p => p.Key);

foreach(var key in keysWithMatchingValues)
Console.WriteLine(key);

意识到可能有多个具有相同值的键,因此任何适当的搜索都会返回键的集合(这就是上面存在 foreach 的原因)。

关于c# - 使用字典值获取字典键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4001908/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com