我们可以使用 LINQ 来替换这个 foreach 循环吗?

发布于 2025-01-11 05:03:41 字数 671 浏览 0 评论 0原文

我有这个函数:

public void RemoveCustomAssignmentFromPublishers(int iCustomAssignment)
{
    try
    {
        // We need to examine each Publisher in the dictionary
        foreach (KeyValuePair<string, Publisher> entry in _PublisherData.PublisherDictionary)
        {
            // We must remove all default exclusions where the stated custom assignment index is used
            entry.Value.Assignments.CustomAssignments.RemoveAll(x => x.Index == iCustomAssignment);
        }
    }
    catch (Exception ex)
    {
        SimpleLog.Log(ex);
    }
}

它迭代一个映射,然后使用 LINQ 删除指示的所有项目。

我们可以使用 LINQ 代替 foreach 循环吗?

I have this function:

public void RemoveCustomAssignmentFromPublishers(int iCustomAssignment)
{
    try
    {
        // We need to examine each Publisher in the dictionary
        foreach (KeyValuePair<string, Publisher> entry in _PublisherData.PublisherDictionary)
        {
            // We must remove all default exclusions where the stated custom assignment index is used
            entry.Value.Assignments.CustomAssignments.RemoveAll(x => x.Index == iCustomAssignment);
        }
    }
    catch (Exception ex)
    {
        SimpleLog.Log(ex);
    }
}

It iterates a map and then uses LINQ to remove all items as indicated.

Can we use LINQ instead of the foreach loop?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文