I had come across a requirement wherein I had to send some reports to the user on the first day of the month and on the last day of the month based on the day selected by the Admin (e.g., the Day of the week provided by Admin is Sunday).
Well, here is the logic which does the trick:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Globalization;
namespace ConsoleApplication3
{
class Demo
{
static void Main(string[] args)
{
DateTime FindLastDate = new DateTime(DateTime.Now.Year ,DateTime.Now.Month , 1).AddMonths(1).AddDays(-1);
int i=(int)DayOfWeek.Saturday ;
int z = (int)FindLastDate.DayOfWeek ;
DateTime LastDay = FindLastDate.AddDays(z >= i ? (-z + i) : -(z + 7 - i));
Console.WriteLine("The Date Of The Last " + DayOfWeek.Saturday.ToString() + " Of the Month Is" + LastDay.ToShortDateString());
DateTime FindFirstDay = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 1);
z = (int)FindFirstDay.DayOfWeek;
DateTime FirstDay = FindFirstDay.AddDays(z > i ? (7 - z) + i : (7 - z)-(7-i));
Console.WriteLine("The Date Of The First " + DayOfWeek.Saturday.ToString() + " Of the Month Is" + FirstDay.ToShortDateString());
Console.ReadLine();
}
}
}
Please post your comments and let me know how you like this trick.