Quantcast
Channel: LINQ equivalent of foreach for IEnumerable - Stack Overflow
Browsing all 23 articles
Browse latest View live

Answer by Fredrik Kalseth for LINQ equivalent of foreach for IEnumerable

There is no ForEach extension for IEnumerable; only for List<T>. So you could do items.ToList().ForEach(i => i.DoStuff()); Alternatively, write your own ForEach extension method: public static...

View Article


LINQ equivalent of foreach for IEnumerable

I'd like to do the equivalent of the following in LINQ, but I can't figure out how: IEnumerable<Item> items = GetItems(); items.ForEach(i => i.DoStuff()); What is the real syntax?

View Article


Image may be NSFW.
Clik here to view.

Answer by l33t for LINQ equivalent of foreach for IEnumerable

So many answers, yet ALL fail to pinpoint one very significant problem with a custom genericForEach extension: Performance! And more specifically, memory usage and GC.Consider the sample below....

View Article
Browsing all 23 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>