I got two List<Image>
(ListA
and ListB
) and i need an efficient way to get the elements of ListA
without the elements of ListB
(A\B)
For example:
ListA
containsImage1
,Image2
,Image3
,Image4
ListB
containsImage2
,Image4
ListA
\ListB
would beImage1
,Image3
I'm relatively new to C# and open for some suggestions