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:
- ListAcontains- Image1,- Image2,- Image3,- Image4
- ListBcontains- Image2,- Image4
- ListA\- ListBwould be- Image1,- Image3
I'm relatively new to C# and open for some suggestions
 
    