using System.Collections.Generic;
static List<string> firstList = new List<string> {"One", "Two","Three"};
static List<string> second = new List<string> {"One", "Two","3"};
public static void Main()
Console.WriteLine("Hello World");
var common = firstList.Where(p=> second.Contains(p));