using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
//List to hold all the date for next 3 months
List<DateTime> li = new List<DateTime>();
//Get the Current Date
DateTime stdt = DateTime.Now;
//Add months to current date
DateTime endt = DateTime.Now.AddMonths(3);
while (stdt <= endt)
li.Add(stdt);
stdt = stdt.AddDays(1);
Console.WriteLine(stdt);
}