I have a calendar which passes selected dates as strings into a method. Inside this method, I want to generate a list of all the dates starting from the selected start date and
for( DateTime i = start; i <= end; i = i.AddDays( 1 ) ) { Console.WriteLine(i.ToShortDateString()); }