gpt4 book ai didi

c# - 使用 LINQ 将常量字符串连接到 List 中的每个项目

转载 作者:太空狗 更新时间:2023-10-29 18:06:03 25 4
gpt4 key购买 nike

我正在使用 C# 和 .Net 4.0。

我有一个 List<string>有一些值,比如 x1、x2、x3。 List<string> 中的每个值,我需要连接一个常量值,说“y”并取回 List<string>作为 x1y、x2y 和 x3y。

有没有 Linq 方法可以做到这一点?

最佳答案

List<string> yourList = new List<string>() { "X1", "Y1", "X2", "Y2" };
yourList = yourList.Select(r => string.Concat(r, 'y')).ToList();

关于c# - 使用 LINQ 将常量字符串连接到 List<string> 中的每个项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13006411/

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