using System.Collections.Generic;
public static void Main()
List<int> dataSource1 = new List<int>() { 1, 2, 3, 4, 5, 6 };
List<int> dataSource2 = new List<int>() { 1, 3, 5, 8, 9, 10 };
var MS = dataSource1.Except(dataSource2).ToList();
var QS = (from num in dataSource1
.Except(dataSource2).ToList();