Exactly what it says on the tin. I just need the most efficiant way of counting weeks(and weeks alone) between two dates in C#.

link|improve this question
Do you mean weeks as in Calender ? – V4Vendetta May 5 '11 at 6:11
What other kind of weeks are there? And how many of them have anything to do with C#, or datetimes? – McAzzaMan May 5 '11 at 6:29
1  
What i meant is two approach whereby any 7 day period could be a week and the other where it follows the calender which has got weeks at specific date ranges. Since you are dealing in dates its more relevant to check with calender weeks. – V4Vendetta May 5 '11 at 6:37
feedback

closed as not a real question by casperOne Apr 29 at 12:48

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

3 Answers

up vote 4 down vote accepted

Get the number of days and divide by 7.

int weeks = (date1 - date2).TotalDays / 7;

You may well have a remainder of up to 6 days that will not be included in the number of weeks.

link|improve this answer
Thanks. You would not believe how many garbage answers there are for this online, and i'm having a bit of a brain-fart day and couldn't come up with anything. – McAzzaMan May 5 '11 at 6:12
feedback

I assume you want to get this on the basis of the Calender. For this you need System.Globalization

DateTime date1 = DateTime.Now;
DateTimeFormatInfo dinfo = DateTimeFormatInfo.CurrentInfo;
dinfo.Calendar.GetWeekOfYear(date1, CalendarWeekRule.FirstFullWeek, DayOfWeek.Monday)

Based on your need you have to set the Calender week rule and the first day of the week.

This gives you a week number for the calender. you can get the same for your other date, the difference is your weeks count

Hope this helps you.

link|improve this answer
feedback

Try this to get the number of days:

TimeSpan ts = date1.Subtract(date2);
int dateDiff = ts.Days();

//then like the person above said. divide by 7

int totalWeeks = (int) dateDiff / 7;

Cheers!

link|improve this answer
feedback

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