How to remove objects from an Enumerable collection in a loop - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T09:44:24Z http://stackoverflow.com/feeds/question/404557 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/404557/how-to-remove-objects-from-an-enumerable-collection-in-a-loop 1 How to remove objects from an Enumerable collection in a loop johnc http://stackoverflow.com/users/5302 2009-01-01T05:11:46Z 2009-01-05T06:15:47Z <h2>Duplicate</h2> <p><a href="http://stackoverflow.com/questions/308466/modifying-a-collection-while-iterating-through-it-c">Modifying A Collection While Iterating Through It</a></p> <p><hr /></p> <p>Has anyone a nice pattern to allow me to get around the inability to remove objects while I loop through an enumerable collection (eg, an IList or KeyValuePairs in a dictionary)</p> <p>For example, the following fails, as it modifies the List being enumerated over during the foreach</p> <pre><code>foreach (MyObject myObject in MyListOfMyObjects) { if (condition) MyListOfMyObjects.Remove(myObject); } </code></pre> <p>In the past I have used two methods.</p> <p>I have replaced the foreach with a reversed for loop (so as not to change the any indexes I am looping over if I remove an object).</p> <p>I have also tried storing a new collection of objects to remove within to loop, then looping through that collection and removed the objects from the original collection.</p> <p>These work fine, but neither <em>feels</em> nice, and I was wondering if anyone has come up with a more <em>elegant</em> solution to the issue</p> http://stackoverflow.com/questions/404557/how-to-remove-objects-from-an-enumerable-collection-in-a-loop/404569#404569 2 Answer by TheSoftwareJedi for How to remove objects from an Enumerable collection in a loop TheSoftwareJedi http://stackoverflow.com/users/18941 2009-01-01T05:20:25Z 2009-01-01T05:33:26Z <p>Do the inverse, creating a new list:</p> <pre><code>List myFilteredList = new List(); foreach (MyObject myObject in myListOfMyObjects) { if (!condition) myFilteredList.Add(myObject); } </code></pre> <p>Then use the new list wherever you need it. </p> <p>You can also use a LINQ expression easily, again, inversing the condition. This has the added benefit of not creating a new structure, but also the pitfalls of it being a lazy enumerable:</p> <pre><code>var myFilteredList = from myObject in myListOfMyObjects where !condition select myObject; </code></pre> <p>However, if you truly need to remove the items from the list, I typically use the "create a new list, then reiterate and remove" approach.</p> http://stackoverflow.com/questions/404557/how-to-remove-objects-from-an-enumerable-collection-in-a-loop/404570#404570 1 Answer by Rob Walker for How to remove objects from an Enumerable collection in a loop Rob Walker http://stackoverflow.com/users/3631 2009-01-01T05:20:34Z 2009-01-01T05:20:34Z <p>I don't like the reversed for loop idea, since that only works on certain data structures. </p> <p>In general I'd use the second technique and accumulate the items to be deleted in a separate 'to-be-deleted' collection. If deletion can cause existing iterates to be invalidated (as will happen with any balanced tree collection for example) then I don't see a way around this.</p> <p>The only other technique that I've occasionally used is to restart the whole iteration when you find the first element to delete. If you make it through without finding any items to delete then the function is finished. This is inefficient, but sometimes neccessary if deleting one item from the collection may change the set of items that need to be deleted.</p> http://stackoverflow.com/questions/404557/how-to-remove-objects-from-an-enumerable-collection-in-a-loop/404578#404578 2 Answer by ChrisW for How to remove objects from an Enumerable collection in a loop ChrisW http://stackoverflow.com/users/49942 2009-01-01T05:27:23Z 2009-01-01T05:37:48Z <p>There's a useful <code>List&lt;T&gt;.RemoveAll(Predicate&lt;T&gt; match)</code> method which I think is designed for this: <a href="http://msdn.microsoft.com/en-us/library/wdka673a.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/wdka673a.aspx</a></p> http://stackoverflow.com/questions/404557/how-to-remove-objects-from-an-enumerable-collection-in-a-loop/412396#412396 1 Answer by Mark Maxham for How to remove objects from an Enumerable collection in a loop Mark Maxham http://stackoverflow.com/users/49737 2009-01-05T06:15:47Z 2009-01-05T06:15:47Z <p>It's kind of simple-minded, but when I plan to delete items from an IEnumerable/IList I usually just make a copy:</p> <pre><code>foreach (MyObject myObject in new List&lt;MyObject&gt;(MyListOfMyObjects)) { if (condition) MyListOfMyObjects.Remove(myObject); } </code></pre> <p>It's not the most efficient way to do it, but it's easy to read. Premature optimization and all that.</p>