vote up 0 vote down star

Possible Duplicate:
How can I calculate/find the week-number of a given date?

How can I find the week-number of a given DateTime instance?

flag

5  
Duplicate: stackoverflow.com/questions/1497586/… – Bobby Oct 28 at 14:36
2  
Wait a minute, you're the same guy... – Bobby Oct 28 at 14:37
2  
Dupe of my own damn question. I need coffee :) – roosteronacid Oct 28 at 14:42
4  
@roosteronacid brings new meaning to exact duplicate question. ;) – Brian Ensink Oct 28 at 14:44
@Brian: Indeed :) – roosteronacid Oct 28 at 14:44

closed as exact duplicate by Forgotten Semicolon, Henk Holterman, Brandon, roosteronacid, David Basarab Oct 28 at 14:42

3 Answers

vote up 5 vote down
CultureInfo ciCurr = CultureInfo.CurrentCulture;

int weekNum = ciCurr.Calendar.GetWeekOfYear(<Your DateTime>, CalendarWeekRule.FirstFourDayWeek, DayOfWeek.Monday);
link|flag
vote up 2 vote down
int weekOfYear = CultureInfo.CurrentCulture.Calendar.GetWeekOfYear(date,
                                                                   CalendarWeekRule.FirstDay,
                                                                   DayOfWeek.Monday);

You may need to change the parameters depending on the rules that apply in your country...

link|flag
vote up -2 vote down

try:

DateTime date = DateTime.Now;
decimal week = date.DayOfYear / 7
link|flag
1  
Sorry, but this is not really a good method. It would fit if we were talking about mathematical week of the year, but this does not work for the calendar-week of the year. – Bobby Oct 28 at 14:39
That doesn't give the actual week number. It'll be off by a week most of the time. – GenericTypeTea Oct 28 at 14:41

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