I have a task which I think can be solved with LINQ. The problem is I am pretty new with it and I just can't implement my idea correctly.
Problem:
I have two string lists:
var list1 = new List<string>{ "item1", "item2" }; <br>
var list2 = new List<string>{ "item1", "item3", "item3", "item4" };
The goal is to return a new List containing the elements from list2 which are not contained in list1, ( "item3", "item4" )