Given a start date of 1/1/2009 and an end date of 12/31/2009, how can I iterate through each date and retrieve a DateTime value using c#?
Thanks!
int day; for (int i = 1; i<365;i++) { day++; }
Sorry, couldn't resist.