Possible Duplicate:
How do I loop through a date range?
Is there a way to make a foreach loop for each day in a specific month?
thinking of something like
foreach (DateTime date in DateTime.DaysInMonth(2012, 1))
{
}
Is there a way to make a foreach loop for each day in a specific month? thinking of something like
|
|||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
You can write a helper method pretty easily:
Then call it with:
This is probably overkill for something you're only doing once, but it's much nicer than using a |
|||||||||
|
|
Try using a for loop instead.
|
|||
|
|
|
You can do it with a simple loop:
|
|||
|
|
You can use Range:
|
||||
|
It is fairly easy to generate an enumeration of days. Here is one way to do it
|
||||
|
|