gpt4 book ai didi

c# - 如何使用 linq 将 List 转换为 Dictionary

转载 作者:行者123 更新时间:2023-12-04 22:11:12 25 4
gpt4 key购买 nike

我有一个字符串列表:

List<string> tList=new List<string>();
tList.add("a");
tList.add("mm");

我想将此列表转换为字典,以便使用 linq 时字典的键和值相同

我试过了:
var dict = tList.ToDictionary<string,string>(m => m, c => c);

但我收到以下错误:

Cannot convert lambda expression to type 'IEqualityComparer' because it is not a delegate type

最佳答案

使用 ToDictionary方法:

List<string> tList = new List<string>();
tList.add("a");
tList.add("mm");
var dict = tList.ToDictionary(k => k, v => v);

不要忘记添加对 System.Linq 的引用.

关于c# - 如何使用 linq 将 List<string> 转换为 Dictionary<string,string>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32505168/

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