Hey All,
What's the easiest way to determine if the last day of the year falls in the same week as the first day of the next year?
Thanks,
|
|
|
|
|
|
|
Just create a DateTime object for December 31st. If it doesn't fall on a Saturday, then January 1st has to be within the same week.
Edit: As Groo pointed out, the start of the week might not always be a Sunday. If it is not, then you could make it <= DayOfWeek.Saturday, or use System.Globalization.CultureInfo.DateTimeFormat.FirstDayOfWeek + 7 to find the last day of the week. |
|||
|
|
It's quite easy. If the last day is not a Sunday, then then first day of the next year must be on the same week! Depending when you start the week, of course. |
||||||
|
|
|
Edit: You didn't ask this, but I think it is more interesting to calculate if two dates fall within the same week. This will also work for your question, but it also solves the problem in a much more general sense. It works by getting the calculating the start of the week for each date, then it compares if the date portions of the DateTime values are the same (just in case different times are passed in with each date).
|
|||
|
|