C# List分组 分成固定数量一组数据

//分组 8个为一组 List<List<string>> ArrayList = sArray.Select((x, i) => new { Index = i, Value = x }) .GroupBy(x => x.Index / 8) .Select(x => x.Select(v =>
posted @ 2023-03-21 01:05  Echo_xxx  阅读(348)  评论(0编辑  收藏  举报