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
Well, you can also use the standard foreach keyword, just format it into a oneliner:
foreach
foreach(var n in Names.Where(blahblah)) DoStuff(n);
Sorry, thought this option deserves to be here :)