当我在我的程序中使用它时,会给我"没有找到任何值"但阵列strGenre包含" Rock"我不明白为什么它会给出负面价值。
Dim intValue As Integer
intValue = Array.BinarySearch(strGenre, "Rock")
If intValue > 0 Then
lstPlayList.Items.Add(strSongs(intValue))
Else
MsgBox("No value found", , "Error")
End If