我想要做的是从 .text 文件中删除某些文本。例如:
我有一个带有以下文本的 .text 文件。
Hello
This
Is <----- I would like to delete this line from the file.
My
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);
File.Delete(comboBox2.SelectedItem + ".txt");
string SelectedItem = comboBox2.SelectedItem.ToString();
string empty = "";
string Readcurrentcontacts = File.ReadAllText(contactpath);
Readcurrentcontacts.Replace(SelectedItem, empty);
}
}
没有成功的结果。如果您需要任何进一步的信息,请告诉我!先感谢您!