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 => v.Value).ToList())
.ToList();

  

posted @ 2022-04-18 09:41  左正  阅读(1328)  评论(0编辑  收藏  举报