如何在 C# 中获取一周中的第一天周、年(公历)?

发布于 2024-08-13 08:53:18 字数 174 浏览 2 评论 0原文

我需要计算给定一年/周的日历周中第一天的日期,例如

2009 年第 53 周 -> 2009 年 12 月 28 日星期一
2010 年第 1 周 -> 2010 年 1 月 4 日星期一

您会如何编写该代码?

PS:在公历中,一年的第一周是第一个有 4 天的周。

I need to calculate the date of the first day in a calendar week given a year/week, e.g.

Week 53 in 2009 -> Mon, 28.12.2009
Week 1 in 2010 -> Mon, 04.01.2010

How would you wirte that code?

PS: In the Gregorian calendar the first week of a year is the first week with 4 days.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你爱我像她 2024-08-20 08:53:18

如果您不想自己完成所有计算,请使用 System.Globalization.Calendar 类。我认为您可以使用 GetDayOfYear() 方法来获取您需要的内容。

查看此 MSDN 库<​​/a>了解示例。

If you don't want to do all the calculation yourself, use the System.Globalization.Calendar class. I think you can use the GetDayOfYear() method to get what you need.

Check this MSDN library for the example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文