csharp remove from list in foreach

Code Example - csharp remove from list in foreach

                
                        myList.RemoveAll(x => x.SomeProp == "SomeValue");
                    
                
 

csharp remove item from list

                        
                                list.Remove("Example String"); // Remove by value
list.RemoveAt(3); // Remove at index
list.RemoveRange(6, 3); // Remove range (removes 3 items starting at 6th position in this example)
                            
                        
 

remove item from list in for loop csharp

                        
                                var data=new List<string>(){"One","Two","Three"};
for(int i=data.Count - 1; i > -1; i--)
{
    if(data[i]=="One")
    {
        data.RemoveAt(i);
    }
}
                            
                        
 

csharp best way to loop and remove

                        
                                for (int i = safePendingList.Count - 1; i >= 0; i--)
{
    // some code
    // safePendingList.RemoveAt(i);
}