gpt4 book ai didi

c# - 将列表分成组

转载 作者:太空宇宙 更新时间:2023-11-03 12:55:16 25 4
gpt4 key购买 nike

我发布了一个问题 here

得到this answer

Parallel.ForEach(lines.GroupBy(line => line.TheUser), grp => {
// processing user grp.Key
foreach(var line in grp) {
// do the stuff here
}
});

如何单独访问用户 1 或用户 2 的组而不是 foreach?

在上面的代码中,它正在对它们进行排序和打印。我想按组访问它们。

最佳答案

lines.AsParallel().Select(x => x.TheUser)  

应该返回一个 TheUser 的 IEnumrable ...

关于c# - 将列表分成组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34130975/

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