本文介绍了将当前日期添加一个月的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
解决方案
我必须为今天添加一个月的日期,并且必须在1个月后获得日期。 $ p> Dim newDate as DateTime = DateTime.Now.AddMonths(1)
I have to add one month to todays date and have to get date after 1 month.Can anybody help?
解决方案
Dim newDate as DateTime = DateTime.Now.AddMonths(1)
这篇关于将当前日期添加一个月的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!