gpt4 book ai didi

c# - 使用 Linq 有没有办法对数组中的每个元素执行操作

转载 作者:太空狗 更新时间:2023-10-29 22:22:51 24 4
gpt4 key购买 nike

如果我有一个数组

var foo = new int[] { 1,2,3,4,5 };

我可以使用 linq 对每个元素执行操作而不是像这样执行操作吗?

for (int i = 0; i < foo.Length; i++)
{
foo[i] = foo[i] / 2; //divide each element by 2
}

最佳答案

var foo = new int[] { 1,2,3,4,5 };
foo = foo.Select(x=>x/2).ToArray();

关于c# - 使用 Linq 有没有办法对数组中的每个元素执行操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18349286/

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