gpt4 book ai didi

c# - 在 C# 中将列表 int 转换为列表字符串的 Lambda 表达式

转载 作者:太空狗 更新时间:2023-10-30 00:13:51 28 4
gpt4 key购买 nike

将 list int 转换为 list string 的 Lambda 表达式

List<int> lstNum = new List<int>(new int[] { 3, 6, 7, 9 });

最佳答案

您可以使用以下方法将 int 列表转换为字符串列表:

List<string> lstStr = lstNum.ConvertAll<string>(x => x.ToString());

关于c# - 在 C# 中将列表 int 转换为列表字符串的 Lambda 表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43838367/

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