我有一个customers
列表(字符串),我试图在其上找到重复的客户。
If Not customers.Count = customers.Distinct.ToList.Count Then
customers = customers.Except(customers.Distinct.ToList)
End If
但我得到以下异常:
InvalidCastException Unable to cast object of type '<ExceptIterator>d__99`1[System.String]' to type
'System.Collections.Generic.List`1[System.String]'。
这是在列表中查找重复项的正确方法吗?