我正在尝试替换 .text 文件中的某些文本行,但出现上面指定的错误。请帮忙,我不知道错误是什么意思,并到处寻找解决这个问题的方法。对我来说没有什么真正有意义的,在此先感谢!如果您需要任何其他信息,请询问而不是将我的帖子设置为离题,我真的不明白这意味着什么。
当前代码:
private void DeleteButton2_Click(object sender, EventArgs e)
{
if (comboBox2.SelectedItem == "")
{
MessageBox.Show("Please Select a Contact.");
}
else
{
comboBox2.Items.Remove(comboBox2.SelectedItem);
comboBox1.Items.Remove(comboBox2.SelectedItem);
string currentselection = comboBox2.SelectedItem.ToString();
File.WriteAllLines(currentselection + ".txt", File.ReadAllLines(currentselection + ".txt").Select(line => line.Replace(currentselection, "")));
}
}