[ROOT] / doc / toc / ARCCore / Class / Extensions / ForEach
Useful when we want to write collection.ForEach( ... ) instead of 
collection.ToList().ForEach ( ... )    (Bad idea performance-wise) 
or
foreach (var t in collection)   which is more verbose 
Discussion about this at
http://blogs.msdn.com/b/ericlippert/archive/2009/05/18/foreach-vs-foreach.aspx
(short version http://stackoverflow.com/questions/10299458/is-the-listt-foreach-method-gone
Generated 2025-10-31 00:48:45.361 UTC