我的代码有一个小问题,我正在读取一个文本文件并显示来自用户输入的匹配项。唯一的问题是它区分大小写,例如,如果 Steve 中的 S 是小写的,它不会显示匹配项,因为它在文本 File 中是大写的。这是我正在使用的代码。
string name;
lstResult.Items.Clear();
using (StreamReader sr = File.OpenText("../Name_Check.txt"))
{
while ((name = sr.ReadLine()) != null)
{
if (txtInput.Text == name)
{
lstResult.Items.Add(name);