C# list集合去重时间:2022-09-03 18:54:07List<Support> Typelist = new List<Support>();//通过循环方式去重 foreach (Support supp in supportList) { if (Typelist.Exists(x => x.crossProfile == supp.crossProfile) == false) { Typelist.Add(supp); } }