.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, "")));
}
}