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
Using Parallel Linq:
Names.AsParallel().ForAll(name => ...)