ファイル名を入力する必要があるテキストボックスがありますが、ファイル名はファイル名全体である必要はありません。
例えば
リストボックスに保存されるiexplorere.exe。次に、「ieexpl」と入力するだけで、結果は完全なファイル名のメッセージボックスに表示されます。
二分探索法で困っています。
これまでの私のコードは次のとおりです。
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!");
}
}