System.Globalization.CCEastAsianLunisolarCalendar.AddMonths C# (CSharp) Method

AddMonths() public static method

public static AddMonths ( DateTime date, int months ) : DateTime
date DateTime
months int
return DateTime
	public static DateTime AddMonths (DateTime date, int months)
	{
		
		throw new Exception ("AddMonths");
	}

Usage Example

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

            M_CheckDateTime(t);
            return(t);
        }
All Usage Examples Of System.Globalization.CCEastAsianLunisolarCalendar::AddMonths