[ad_1]
Try using File.AppendText to append to the file:
using (StreamWriter SaveFile = File.AppendText(sPath))
{
SaveFile.WriteLine("hello");
}
[ad_2]
solved save items of list box into text file
[ad_1]
Try using File.AppendText to append to the file:
using (StreamWriter SaveFile = File.AppendText(sPath))
{
SaveFile.WriteLine("hello");
}
[ad_2]
solved save items of list box into text file