mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-21 01:49:57 +02:00
25 lines
763 B
C#
25 lines
763 B
C#
|
using System;
|
||
|
using System.Globalization;
|
||
|
|
||
|
namespace NzbDrone.Common
|
||
|
{
|
||
|
public static class DateTimeExtensions
|
||
|
{
|
||
|
public static DateTime GetFirstDayOfWeek(this DateTime dayInWeek)
|
||
|
{
|
||
|
var defaultCultureInfo = CultureInfo.CurrentCulture;
|
||
|
return GetFirstDayOfWeek(dayInWeek, defaultCultureInfo);
|
||
|
}
|
||
|
|
||
|
public static DateTime GetFirstDayOfWeek(this DateTime dayInWeek, CultureInfo cultureInfo)
|
||
|
{
|
||
|
DayOfWeek firstDay = cultureInfo.DateTimeFormat.FirstDayOfWeek;
|
||
|
DateTime firstDayInWeek = dayInWeek.Date;
|
||
|
while (firstDayInWeek.DayOfWeek != firstDay)
|
||
|
firstDayInWeek = firstDayInWeek.AddDays(-1);
|
||
|
|
||
|
return firstDayInWeek;
|
||
|
}
|
||
|
}
|
||
|
}
|