我有一个文本文件,我在其中添加、更新和删除数据(联系人)。每个联系人排成一行。现在,当我通过我的应用程序删除联系人时,我正在删除文件中的一行(用空字符串替换联系人)这导致联系人之间出现空行。我不想要这个空行。这是我写的一段代码:
private void btn_condel_Click(object sender, EventArgs e)
{
bufferedListView1.Items.Clear();
string fileContents = File.ReadAllText("C:\\sample.txt");
string replacedContents = fileContents.Replace(txt_editname.Text + "@" + txt_editno.Text,"");
File.WriteAllText("C:\\sample.txt", replacedContents);
// Rest of the code
在替换文件中的数据时,我需要做什么来消除这个空行。