Tagged Questions

8
votes
9answers
12k views

C# - What is the best way to get a list of the weeks in a month, given a starting weekday?

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
1
vote
2answers
1k views

How to get the same time and Day next month using DateTime in c#

I have a c# DateTime object and I need to increment it by one month. example: input output ------------------------------- Jan 12, 2005 Feb 12, 2005 Feb 28, 2009 Mar 28, 2009 Dec 31, ...