本文介绍了在asp.net中使用addmonths()方法c#的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述





我正在使用AddMonths();在现有日期添加一些月份的方法,如果现有月份不是12月,如果我想在12月添加1个月而没有添加月份,则正确添加月份。



如何在12月添加月份



I am using AddMonths(); method to add some month in existing date, it add month correctly if the existing month is not December if am trying to add 1 month in December it didn''t add month.

How can i add the month in december

推荐答案

DateTime.Now.AddMonths(1); // 2013-01-17


这篇关于在asp.net中使用addmonths()方法c#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-14 23:54