gpt4 book ai didi

c# - 在 C# 中将 Tuple IEnumerable 转换为 List

转载 作者:太空狗 更新时间:2023-10-30 00:22:44 26 4
gpt4 key购买 nike

我想转换元组 IEnumerableList<string> .例如,如果有

public static IEnumerable<Tuple<string, Type>> GetWord(String formula) 

我怎样才能将可枚举直接传递给新的 List<string> 的构造函数? ???

谢谢!

最佳答案

Select 大概就是你想要的

var list = new List<string>(GetWord.Select(x => x.Item1));

关于c# - 在 C# 中将 Tuple IEnumerable 转换为 List<string>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54321244/

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