我创建了一个两个 int 类型的列表,并使用 except 方法将仅在 list1 中的项目分配给 list1。例如
List<int> list1 = new List<int>();
List<int> list2 = new List<int>();
list1 = {1,2,3,4,5,6} // get items from the database
list2 = {3,5,6,7,8} // get items from the database
list1 = list1.Except(list2); // gives me an error.
请给我建议。什么是正确的方法。