如何在 C# 中获取一周中的第一天周、年(公历)?
我需要计算给定一年/周的日历周中第一天的日期,例如
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不想自己完成所有计算,请使用 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 theGetDayOfYear()
method to get what you need.Check this MSDN library for the example.