C# – Remove items from a list while iterating

There are two ways to iterate through a List<T> and remove items based on a condition:

  • Option 1: Use List.RemoveAll() and specify the conditions.
  • Option 2: Iterate backward, check conditions, and use List.RemoveAt().

These remove items from the list in an in-place manner (i.e. modify the original list) and avoid the problems you run into when doing this incorrectly (such as using a foreach or looping forward). I’ll show examples below. Then I’ll compare the performance.

Option 1 – Use List.RemoveAll() and specify the conditions

The simplest approach is to use List.RemoveAll(). You pass in a lambda with the removal conditions. It iterates through the list and removes items that meet the conditions. Then it returns the count of items removed. Here’s an example:

var list = new List<int>()
{
    1,2,3,4,5
};

list.RemoveAll(i => i < 3);

Console.WriteLine($"List after removing: {string.Join(",", list)}");
Code language: C# (cs)

This removes all integers less than 3 from the list. It outputs the following:

List after removing 2 item(s): 3,4,5Code language: plaintext (plaintext)

Option 2 – Iterate backward + List.RemoveAt()

You can remove items based on a condition by iterating backward (from the last item to the first item) with a regular for loop and using List.RemoveAt(). Here’s an example:

var list = new List<int>()
{
    1,2,3,4,5
};

for(int i = list.Count - 1; i >= 0; i--)
{
    if (list[i] < 3)
        list.RemoveAt(i);
}

Console.WriteLine($"List after removing: {string.Join(",", list)}");
Code language: C# (cs)

This removes all integers less than 3 from the list and outputs the following:

List after removing: 3,4,5Code language: plaintext (plaintext)

Don’t loop forward

You may be wondering, is it really necessary to loop backward? The reason you have to loop backward is because removing items in a forward loop results in skipping over items. When you remove an item at index, it shifts items at index + 1 to the left by 1. Meanwhile, your loop variable keeps moving forward by 1. Hence, items get skipped. Here’s an example to show this problem:

arr = ['a','b','c']
index = 0

remove at index 0 and index++
arr = ['b','c']
index = 1Code language: plaintext (plaintext)

Notice that it skipped over item ‘b’. Looping backward eliminates this problem.

Performance comparison

List.RemoveAll() performs better than the Iterate Backward + List.RemoveAt() approach in most scenarios. Here are the performance comparison results for these two approaches in various scenarios:

Test 1 - Removing 0 items
RemoveAll (ms): 0.4266
RemoveAt (ms): 0.3588

Test 2a - Removing 10% of items from start
RemoveAll (ms): 0.3789
RemoveAt (ms): 106.8461

Test 2b - Removing 10% of items from end
RemoveAll (ms): 0.2759
RemoveAt (ms): 0.2793

Test 3a - Removing 50% of items (odd)
RemoveAll (ms): 0.3651
RemoveAt (ms): 117.2191

Test 3b - Removing 50% of items from start
RemoveAll (ms): 0.3254
RemoveAt (ms): 219.598

Test 3c - Removing 50% of items from end
RemoveAll (ms): 0.2932
RemoveAt (ms): 0.3594

Test 4a - Removing 90% of items from start
RemoveAll (ms): 0.2618
RemoveAt (ms): 81.3482

Test 4a - Removing 90% of items from end
RemoveAll (ms): 0.3022
RemoveAt (ms): 0.6094Code language: plaintext (plaintext)

As you can see, List.RemoveAll()’s performance is highly consistent (from 0.26ms to 0.42ms) whereas List.RemoveAt()’s performance varies wildly (from 0.27ms to 219ms).

To understand the performance difference, you have to know how these work internally.

  • List.RemoveAll() works by iterating through List<T>’s internal array, checking each item against the removal conditions. If it needs to remove an item, it skips overs it. If it needs to keep an item, it moves it to the left, overwriting the items to remove. It looks at and handles each item exactly once.
  • With the Iterate backward + use List.RemoveAt() approach, most of the work is being done by List.RemoveAt(). You pass in the index to remove, and this works by shifting all items from index + 1 to the left by 1 en masse by using Array.Copy() on List<T>’s internal array. This approach looks at each item once but has to potentially shift a large number of items repeatedly.

It makes sense that List.RemoveAt() would perform poorly when removing a large number of items from the start of the list. In that case, it’s copying large chunks of the internal array repeatedly.

4 thoughts on “C# – Remove items from a list while iterating”

  1. You can do that not only backward but forward 😉

    for(int i = 0; i < list.Count; i++)
    {
    if (list[i] < 3)
    {
    list.RemoveAt(i);
    i–;
    }
    }

    Reply
    • When you remove items while looping forward, you end up skipping items. The reason is because RemoveAt() shifts items to the left while your index is moving forward. This is why it’s necessary to loop backwards instead.

      Example of the problem with removing items in a forward loop:
      [1,2,3]
      i=0
      remove index 0 and i++
      [2,3]
      i=1
      Notice that you’re now looking at index 1 and totally skipped over element 2.

      I didn’t really explicitly mention this in the article, but it’s probably a good idea if I add it. Other people may be wondering “why do I need to loop backwards?”

      Reply
      • Concerning your example maybe you missed out that “i” will be -1 then it will be zero again because of “i++”.
        So we won’t skip the element #2

        This is the full example:

        var list = new List<int> { 1, 2, 3 };

        for (int i = 0; i < list.Count; i++)
        {
            Console.WriteLine("(before of i–) i: " + i);
            Console.WriteLine("(before of i–) list[i]: " + list[i]);
            if (list[i] == 1)
            {
                list.RemoveAt(i);
                i -= 1;
                Console.WriteLine("(after of i–) i: " + i);
            }
        }

        Console.WriteLine("list elements: " + string.Join(", ", list));

        And its output:
        (before of i–) i: 0
        (before of i–) list[i]: 1
        (after of i–) i: -1
        (before of i–) i: 0
        (before of i–) list[i]: 2
        (before of i–) i: 1
        (before of i–) list[i]: 3
        list elements: 2, 3

        As you can see, we iterate through all the elements:
        list[i]: 1
        list[i]: 2
        list[i]: 3

        I don't say that this solution is the best or most effective but it works 😉

        Reply
        • Oh, you’re right! I completely missed the part where it was decrementing i if it removed the item.

          By the way, I tried to fix the formatting issues caused by the comment system stripping out characters (I saw your other comments explaining what it did). I used “i -= 1” because it keeps converting double minus to an HTML long dash character (haha).

          Reply

Leave a Comment