//分组  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();

相关文章:

  • 2021-12-03
  • 2022-01-05
  • 2022-12-23
  • 2022-12-23
  • 2021-09-09
  • 2022-12-23
  • 2021-07-26
猜你喜欢
  • 2021-11-17
  • 2022-12-23
  • 2021-12-31
  • 2021-06-03
  • 2022-12-23
  • 2022-12-23
  • 2021-06-14
相关资源
相似解决方案