I need to get a list of weeks for a given month, with Monday as the start day.
So for example, for the month of February 2009, this method would return:
2/2/2009
2/9/2009
2/16/2009
2/23/2009
|
I need to get a list of weeks for a given month, with Monday as the start day. So for example, for the month of February 2009, this method would return:
| |||||
feedback
|
| |||||
feedback
|
| |||||||||||
feedback
|
|
Here's a solution (effectively one line) using C# 3.0/LINQ, in case you're interested:
| |||
|
feedback
|
|
Something like the following pseudo-code should work:
| |||
|
feedback
|
|
Just change the response line to what ever you need to do with it
Quick solution: i don't think there is a built in function for it.... | ||||
feedback
|
| |||
|
feedback
|
|
How about this?
| |||
|
feedback
|
|
I see you got your answer, but I wanted to share with you a helper class I created for one of my projects. It's far to be a comprehansive class, but might help...
} | |||
|
feedback
|
|
This works beautifully! All you have to do is get the first day of the month you want to get the weeks for and then this will give you the first day of every week. You need to get 5 weeks (not 4) so the Enumerable.Range counts out 5 instead of 4.
| |||
|
feedback
|