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 @ 2019-11-14 22:30  TTonlyV5  阅读(4157)  评论(0编辑  收藏  举报