Compare two lists to search common items

31,031

Solution 1

You can use the Intersect method.

var result = one.Intersect(second);

Example:

void Main()
{
    List<int> one = new List<int>() {1, 3, 4, 6, 7};
    List<int> second = new List<int>() {1, 2, 4, 5};

    foreach(int r in one.Intersect(second))
        Console.WriteLine(r);
}

Output:

1
4

Solution 2

static void Main(string[] args)
        {
            List<int> one = new List<int>() { 1, 3, 4, 6, 7 };
            List<int> second = new List<int>() { 1, 2, 4, 5 };

            var result = one.Intersect(second);

            if (result.Count() > 0)
                result.ToList().ForEach(t => Console.WriteLine(t));
            else
                Console.WriteLine("No elements is common!");

            Console.ReadLine();
        }
Share:
31,031
Saint
Author by

Saint

Updated on July 18, 2020

Comments

  • Saint
    Saint almost 4 years
    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