gpt4 book ai didi

c# - 如何通过对以下代码使用 LINQ 来避免循环?

转载 作者:行者123 更新时间:2023-11-30 13:24:32 27 4
gpt4 key购买 nike

foreach (Feature fe in features)
{
if (fileNames.Any(file => file.Contains(fe.FeatureName)))
{
fe.MatchCount = fe.MatchCount == 0 ? 1 : fe.MatchCount;
}
}

最佳答案

您正在改变循环变量末尾的对象,因此您不能在 LINQ 中(干净利落地)这样做。保持循环;它会更容易理解,但也许可以减少一点:

var qry = features.Where(fe => fe.MatchCount == 0 &&
fileNames.Any(file => file.Contains(fe.FeatureName));

foreach (Feature fe in qry) { fe.MatchCount == 1; }

关于c# - 如何通过对以下代码使用 LINQ 来避免循环?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3921410/

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