最佳答案
我想在LINQ中执行以下等效操作,但我不知道如何:
IEnumerable<Item> items = GetItems();items.ForEach(i => i.DoStuff());
真正的语法是什么?