AddMonths() 공개 정적인 메소드

public static AddMonths ( DateTime date, int months ) : DateTime
date DateTime
months int
리턴 DateTime
        public override DateTime AddMonths(DateTime time, int months)
        {
            DateTime t = CCEastAsianLunisolarCalendar.AddMonths(time, months);

            M_CheckDateTime(t);
            return(t);
        }
        public override DateTime AddMonths(DateTime time, int months)
        {
            DateTime dateTime = CCEastAsianLunisolarCalendar.AddMonths(time, months);

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