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#.
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.
|
Get the number of days and divide by 7.
You may well have a remainder of up to 6 days that will not be included in the number of weeks. | |||
feedback
|
|
I assume you want to get this on the basis of the Calender. For this you need
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. | |||
|
feedback
|
|
Try this to get the number of days:
Cheers! | |||
|
feedback
|