I thought it would just be as simple as
StringBuilder buildStrings = new StringBuilder();
foreach (string day in weeklyPlan.Items)
{
buildStrings.Append(day);
buildStrings.Append("\n");
}
string pathing = @"C:\...";
System.IO.File.WriteAllText(pathing, buildStrings.ToString());
It writes to the next file just fine;however, it writes them all on one line, so the output looks like
I'm the first item I'm the second item im the third item
instead of what i'm going for which is
I'm the first item
I'm the second item
I'm the third item
edited for formatting