用 C# 计算一周的开始日期
本文演示了如何使用当前日期和时间在 C# 中轻松查找一周的开始(星期日或星期一)。 我们将使用简洁的扩展方法来完成此任务。
扩展方法实现:
<code class="language-csharp">public static class DateTimeExtensions { public static DateTime WeekStart(this DateTime dt, DayOfWeek firstDayOfWeek) { int dayDifference = (7 + (dt.DayOfWeek - firstDayOfWeek)) % 7; return dt.AddDays(-dayDifference).Date; } }</code>
使用示例:
WeekStart
扩展方法简化了获取一周开始日期的过程。使用方法如下:
<code class="language-csharp">DateTime mondayStart = DateTime.Now.WeekStart(DayOfWeek.Monday);</code>
<code class="language-csharp">DateTime sundayStart = DateTime.Now.WeekStart(DayOfWeek.Sunday);</code>
这种方法提供了一种干净有效的方式来确定一周的开始,无论您将其定义为星期日还是星期一。
以上是如何在 C# 中获取一周的开始(周日或周一)?的详细内容。更多信息请关注PHP中文网其他相关文章!