Use an Extension Method to Update All Items in a List December 19, 2019 Learn how to use an extension method to update all of the items in a list with C#. public static IEnumerable ForEach(this IEnumerable collection, Action action){ //Loop thru the collection