I'm writing a list to a file, the list gets data from the form app from text I type in. This works but it overwrites the file every time I start the form instead of saving it and adding new data. How Can I add "AppendAllLines" or "WriteAllLines" to this as a solution?
public List<String> listDeliveries()
{
List<String> listDeliveries = new List<string>();
using (StreamWriter writer = new StreamWriter("Database.txt"))
{
foreach (Delivery del in deliveries)
{
String delAsString = del.summary();
listDeliveries.Add(delAsString);
writer.WriteLine(delAsString);
}
}
return listDeliveries;
}