I have the following code working for my requirement, but its checking case sensitivity. How can use it ignoring case sensitivity...?复制 Dim SrtList() As String = {"abc","qwe","zxc"} Dim chkStr As String = "abc" If strList.contains(chkStr) Then MsgBox ("Item Exists") Else ...