Check whether a string is not equal to any of a list of strings

后端 未结 4 1685
野性不改
野性不改 2021-02-19 06:29

Is there a way to convert some code like this:

If someString <> \"02\" And someString <> \"03\" And someString <> \"06\" And someString <>         


        
4条回答
  •  太阳男子
    2021-02-19 07:09

    Would Contains work?

    Dim testAgainst As String() = {"02","03","06","07"}
    If Not testAgainst.Contains(someString) Then
        btnButton.Enabled = False
    End If
    

提交回复
热议问题