检查组合框是否包含list vb.net的值

时间:2018-02-10 14:49:42

标签: vb.net combobox

我有重复值的列表

 Dim lstPlayerValidate As New List(Of Integer)
 Dim duplicates = lstPlayerValidate.Where(Function(x) lstPlayerValidate.Where(Function(y) x = y).Count() > 1).Distinct().ToList

现在我想检查一下comboxes是否包含此列表中的任何值。 我是这样做的:

If cmbPlayer.Items.Contains(duplicates) Then 'do something

我的组合框的项目为List(Of Player),其中PlayerID是我想要比较的值。也许我正在做一个不必要的工作,创建只有id值的另一个列表。但我现在不知道如何做到这一点

0 个答案:

没有答案