vote up 2 vote down star
1

How can I use Linq to find common items between 2 generic lists of type string.

For example, say I have the following code, I would like to get a List < string> which would contain item2 and item3:

List<string> List1 = new List<string>();
List<string> List2 = new List<string>();

List1.Add("item1");
List1.Add("item2");
List1.Add("item3");

List2.Add("item2");
List2.Add("item3");
List2.Add("item4");
flag

62% accept rate

4 Answers

vote up 8 vote down check
var items = List1.Intersect(List2);

see http://msdn.microsoft.com/en-us/vcsharp/aa336761.aspx, from the much recommended 101 LINQ Samples

link|flag
vote up 0 vote down
from item in list1
where list2.Contains(item)
select item

will work for valuetypes.

link|flag
vote up 3 vote down

I know LINQ was tagged, but just for completeness; if LINQ isn't an option;

List<string> result = list1.FindAll(list2.Contains);
link|flag
vote up 0 vote down

Hi

How about

var List3 = list1.Intersect(list2)

regards Edwards

link|flag
It seems large portions of your answer intersect with my answer. – Kobi Aug 23 at 10:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.