二进制搜索数组VB

时间:2016-06-09 13:36:29

标签: arrays vb.net

当我在我的程序中使用它时,会给我"没有找到任何值"但阵列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

0 个答案:

没有答案