static void Main(string[] args) {
var a = new List
var b = new List
var c = a.Where(x => b.Any(y => x == y)).ToList();
foreach (var item in c) {
Console.Write(“{0} “, item);
}
}