gpt4 book ai didi

.net - List.ForEach 方法和集合接口(interface)

转载 作者:行者123 更新时间:2023-12-01 11:08:22 27 4
gpt4 key购买 nike

在 .NET 3.5 中,List<> 获得了一个 ForEach 方法。我注意到这在 IList<> 或 IEnumerable<> 上不存在,这里的想法是什么?还有另一种方法吗?做到这一点的好而简单的捷径?

我问是因为我在演讲中演讲者说总是使用更通用的接口(interface)。但是,如果我希望能够转身使用 ForEach,为什么还要使用 IList<> 作为返回类型?然后我最终会将其转换回 List<>。

最佳答案

what was the thinking here?

您可以阅读 Eric Lippertblog由于未添加此功能的原因。

Is there another way to do this? Nice and simple short way to do this?

为什么不直接使用 foreach 关键字呢?我发现它更具可读性。

foreach (var foo in ilist)
{
// etc...
}

尽管您可以添加 ForEach IEnumerable<T> 的扩展方法如果你想:

public static void ForEach<T>(this IEnumerable<T> enumeration, Action<T> action)
{
foreach (T item in enumeration)
{
action(item);
}
}

取自here .

关于.net - List.ForEach 方法和集合接口(interface),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2961852/

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