Compare two lists to search common items

Viewed 31677
List<int> one //1, 3, 4, 6, 7
List<int> second //1, 2, 4, 5

How to get all elements from one list that are present also in second list?

In this case should be: 1, 4

I talk of course about method without foreach. Rather linq query

2 Answers
Related