views:

227

answers:

4

hi guys, I have to add one month to todays date and have to get date after 1 month.Can anybody help?

+5  A: 
Dim newDate as DateTime = DateTime.Now.AddMonths(1)
Philip Fourie
+2  A: 

Try DateTime.AddMonths Method

Petar Repac
+2  A: 

dateAfterMonth = dateAfterMonth.AddMonths(1)
If you would add 1 month from now:
dateAfterMonth = DateTime.Now.AddMonths(1)

Ravadre
A: 

using Fluent DateTime http://fluentdatetime.codeplex.com/

       Dim newDate as DateTime = 1.Months().FromNow()
Simon