AddMonths() public static method

public static AddMonths ( DateTime date, int months ) : DateTime
date DateTime
months int
return DateTime
コード例 #1
0
        public override DateTime AddMonths(DateTime time, int months)
        {
            DateTime t = CCEastAsianLunisolarCalendar.AddMonths(time, months);

            M_CheckDateTime(t);
            return(t);
        }
コード例 #2
0
        public override DateTime AddMonths(DateTime time, int months)
        {
            DateTime dateTime = CCEastAsianLunisolarCalendar.AddMonths(time, months);

            this.M_CheckDateTime(dateTime);
            return(dateTime);
        }