How to remove objects from an Enumerable collection in a loop - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T09:44:24Zhttp://stackoverflow.com/feeds/question/404557http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/404557/how-to-remove-objects-from-an-enumerable-collection-in-a-loop1How to remove objects from an Enumerable collection in a loopjohnchttp://stackoverflow.com/users/53022009-01-01T05:11:46Z2009-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#4045692Answer by TheSoftwareJedi for How to remove objects from an Enumerable collection in a loopTheSoftwareJedihttp://stackoverflow.com/users/189412009-01-01T05:20:25Z2009-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#4045701Answer by Rob Walker for How to remove objects from an Enumerable collection in a loopRob Walkerhttp://stackoverflow.com/users/36312009-01-01T05:20:34Z2009-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#4045782Answer by ChrisW for How to remove objects from an Enumerable collection in a loopChrisWhttp://stackoverflow.com/users/499422009-01-01T05:27:23Z2009-01-01T05:37:48Z<p>There's a useful <code>List<T>.RemoveAll(Predicate<T> 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#4123961Answer by Mark Maxham for How to remove objects from an Enumerable collection in a loopMark Maxhamhttp://stackoverflow.com/users/497372009-01-05T06:15:47Z2009-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<MyObject>(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>