我有一个文本框,我需要输入文件名,但文件名不必是整个文件名,只是部分文件名。
例如
iexplorere.exe 将存储在列表框中。然后我必须输入woule 是“iexpl”,然后结果将出现在带有完整文件名的消息框中。
我在使用二进制搜索方法时遇到了问题。
到目前为止,我的代码是:
private void btnSearch_Click(object sender, RoutedEventArgs e)
{
fValue = bList.BinarySearch(sValue, StringComparison.OrdinalIgnoreCase);
MessageBox.Show("The Following Files were found \n" + fValue);
}
catch (Exception)
{
// Alerts the user path file doesnt exist
MessageBox.Show("The File Doesn't Exist!");
}
}