Answers for "c# remove from list in foreach"

C#
4

c# remove from list in foreach

myList.RemoveAll(x => x.SomeProp == "SomeValue");
Posted by: Guest on February-13-2020

C# Answers by Framework

Browse Popular Code Answers by Language