本文整理汇总了C#中DayOfWeek.ToIsoDayOfWeek方法的典型用法代码示例。如果您正苦于以下问题:C# DayOfWeek.ToIsoDayOfWeek方法的具体用法?C# DayOfWeek.ToIsoDayOfWeek怎么用?C# DayOfWeek.ToIsoDayOfWeek使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DayOfWeek
的用法示例。
在下文中一共展示了DayOfWeek.ToIsoDayOfWeek方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FromCalendarWeekRule
/// <summary>
/// Creates a rule which behaves the same way as the BCL
/// <see cref="Calendar.GetWeekOfYear(DateTime, CalendarWeekRule, DayOfWeek)"/>
/// method.
/// </summary>
/// <remarks>The BCL week year rules are subtly different to the ISO rules.
/// In particular, the last few days of the calendar year are always part of the same
/// week-year in the BCL rules, whereas in the ISO rules they can fall into the next
/// week-year. (The first few days of the calendar year can be part of the previous
/// week-year in both kinds of rule.) This means that in the BCL rules, some weeks
/// are incomplete, whereas ISO weeks are always exactly 7 days long.
/// </remarks>
/// <param name="calendarWeekRule">The BCL rule to emulate.</param>
/// <param name="firstDayOfWeek">The first day of the week to use in the rule.</param>
public static IWeekYearRule FromCalendarWeekRule(CalendarWeekRule calendarWeekRule, DayOfWeek firstDayOfWeek)
{
int minDaysInFirstWeek;
switch (calendarWeekRule)
{
case FirstDay:
minDaysInFirstWeek = 1;
break;
case FirstFourDayWeek:
minDaysInFirstWeek = 4;
break;
case FirstFullWeek:
minDaysInFirstWeek = 7;
break;
default:
throw new ArgumentException($"Unsupported CalendarWeekRule: {calendarWeekRule}", nameof(calendarWeekRule));
}
return new SimpleWeekYearRule(minDaysInFirstWeek, firstDayOfWeek.ToIsoDayOfWeek(), true);
}