I have two lists:
var lista01 = new List<int> { 1, 2, 3, 4, 5 };
var lista02 = new List<int> { 7, 7, 7, 7, 7 };
I need to check if at least one element of list 1 exists in list 2, so the result for the above example should be fa...
asked by
24.12.2013 / 23:54