#region Dump Output Dates to File
string filePath = "c:/dev/projected_dates.csv";
string actualDatesCSV = string.Join(",",
actualDates
.OrderBy(x => x)
.Select(x => x.ToShortDateString())
);
using (var sw = new System.IO.StreamWriter(filePath))
{
sw.Write(actualDatesCSV.Replace(",", "\n"));
}
#endregion
SE Radio 708: Jens Gustedt on C in 2026
5 days ago
No comments:
Post a Comment
comment: