Answers for "Remove elements from a list while iterating over it in C#"

C#
1

Remove elements from a list while iterating over it in C#

using System;
using System.Collections.Generic;
using System.Linq;
 
public class Example
{
    public static void Main()
    {
        List<int> list = new List<int>(Enumerable.Range(1, 10));
 
        foreach (int item in list.Reverse<int>())
        {
                list.Remove(item);
            
        }
 
    }
}
Posted by: Guest on April-30-2021

Code answers related to "Remove elements from a list while iterating over it in C#"

C# Answers by Framework

Browse Popular Code Answers by Language