gpt4 book ai didi

c# - 如何使用 LINQ 过滤字典并将其返回到相同类型的字典

转载 作者:IT王子 更新时间:2023-10-29 03:41:14 25 4
gpt4 key购买 nike

我有以下字典:

Dictionary<int,string> dic = new Dictionary<int,string>();
dic[1] = "A";
dic[2] = "B";

我想过滤字典的项目并将结果重新分配给同一个变量:

dic = dic.Where (p => p.Key == 1);

如何从相同类型 [ <int,string> 中将结果作为字典返回] ?

我试过了 ToDictionary , 但它不起作用。

最佳答案

ToDictionary 是要走的路。它确实有效——您可能只是错误地使用了它。试试这个:

dic = dic.Where(p => p.Key == 1)
.ToDictionary(p => p.Key, p => p.Value);

话虽如此,我假设您真的想要一个不同的Where 过滤器,因为您当前的过滤器只会找到一个键...

关于c# - 如何使用 LINQ 过滤字典并将其返回到相同类型的字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3988995/

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