List<string> list1 = new List<string> {"jos", "eva"};
List<string> list2 = new List<string> { "jos", "eva", "bart"};
//Result
List<string> list3 = new List<string> { "jos", "eva", "bart"};
i need to compare 2 lists of the same type and i need to get a new list with all the values but no value can be dubble in the new list. i tried already with a a dubble for each but the result is to big.