listSuper
listSub_A
listSub_B
Is there any extension methods that replace the following piece of code?
foreach(int a in listSuper)
{
if (!listSub_A.Contains(a))
{
listSub_B.Add(a);
}
}
In short I want to fill listSub_B with elements in listSuper which are not in listSub_A.