I want to calculate the week number of a given date.

DateTime date = Convert.ToDateTime("31.12.2001");

DateTimeFormatInfo dfi = DateTimeFormatInfo.CurrentInfo;
System.Globalization.Calendar cal = dfi.Calendar;

int weekOfYear = cal.GetWeekOfYear(date, CalendarWeekRule.FirstFourDayWeek,  
   dfi.FirstDayOfWeek);

In my DateTimeFormatInfo, the first day of week is a monday. I want to use the four days rule, means a week belongs to a year in which the majority of its days lie. The 31st of December 2001 is a monday and should then be in week 1 of 2002. However, weekOfYear is returned as 53.

Does someone know what´s wrong?

link|improve this question

Related question: stackoverflow.com/q/662379 – Henk Holterman Jan 31 at 13:55
I see, the issue isn´t new. – AGuyCalledGerald Jan 31 at 13:56
Not a direct duplicate, but there is some good info in the answers. – Henk Holterman Jan 31 at 14:13
feedback

1 Answer

up vote 4 down vote accepted

See the documentation for CalendarWeekRule for the exact rules. In short, December 31 will never be week 1, it will be always something like 52/53. The values on the enumeration influence what week will the first days of January have.

link|improve this answer
This makes no sense. A week should always have 7 days. What weird stuff is MS doing? – AGuyCalledGerald Jan 31 at 14:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.