How to add current date + 30days

Hi,

Now.AddDays(30) will give you the value you need as DateTime.

Now.AddDays(30).toString will give its string representation.

Cheers

5 Likes