System.Globalization.CCEastAsianLunisolarCalendar.AddYears C# (CSharp) Méthode

AddYears() public static méthode

public static AddYears ( DateTime date, int years ) : DateTime
date DateTime
years int
Résultat DateTime
	public static DateTime AddYears (DateTime date, int years)
	{
		throw new Exception ("AddYears");
	}

Usage Example

        public override DateTime AddYears(DateTime time, int years)
        {
            DateTime t = CCEastAsianLunisolarCalendar.AddYears(time, years);

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