I have an Enumerable and am looking for a method that allows me to execute an action for each element, kind of like Select but then for si
Enumerable
Select
A quick-and-easy way to get this is:
Names.ToList().ForEach(e => ...);