I\'d like to do the equivalent of the following in LINQ, but I can\'t figure out how:
IEnumerable items = GetItems(); items.ForEach(i => i.DoS
According to PLINQ (available since .Net 4.0), you can do an
IEnumerable.AsParallel().ForAll()
to do a parallel foreach loop on an IEnumerable.