I have two Lists, and I’ve values in these as,
List1 List2
----- -----
1 1
2 2
3
I’ve to compare the second list with the first list, and I’ve to return the values which is not in the List1(here “3”), how can we compare two lists like this?
can anyone help me?
Use LINQ and the
Exceptextension method.