gpt4 book ai didi

c# - 如何按索引对项目进行分组? C# 联机

转载 作者:IT王子 更新时间:2023-10-29 04:53:00 26 4
gpt4 key购买 nike

假设我有

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

如何将它们分组成对?

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

最好使用 LINQ

最佳答案

input
.Select((value, index) => new { PairNum = index / 2, value })
.GroupBy(pair => pair.PairNum)
.Select(grp => grp.Select(g => g.value).ToArray())
.ToArray()

关于c# - 如何按索引对项目进行分组? C# 联机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1290451/

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