Answers for "remove items from one list in another c#"

C#
1

c# remove items from one list that are in another

destinationList = destinationList.Except(excludeList).ToList();
Posted by: Guest on January-20-2021
0

remove items from one list in another c#

destionList.RemoveAll(x => sourceList.Exists(y => y.Id == x.Id));
Posted by: Guest on April-21-2021

Code answers related to "remove items from one list in another c#"

C# Answers by Framework

Browse Popular Code Answers by Language