1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
public static class Month
{
/// <summary>
/// Gets the first day of the month.
/// </summary>
/// <param name="givenDate">The given date.</param>
/// <returns>the first day of the month</returns>
public static DateTime GetFirstDayOfMonth(DateTime givenDate)
{
return new DateTime(givenDate.Year, givenDate.Month, 1);
}
/// <summary>
/// Gets the last day of month.
/// </summary>
/// <param name="givenDate">The given date.</param>
/// <returns>the last day of the month</returns>
public static DateTime GetTheLastDayOfMonth(DateTime givenDate)
{
return GetFirstDayOfMonth(givenDate).AddMonths(1).Subtract(new TimeSpan(1, 0, 0, 0, 0));
}
}
|