Cats.Helpers.EthiopianDate.SetDate C# (CSharp) Method

SetDate() public method

Input is gregorian calendar.
public SetDate ( int gregorianYear, int gregorianMonth, int gregorianDay ) : void
gregorianYear int
gregorianMonth int
gregorianDay int
return void
        public void SetDate(int gregorianYear, int gregorianMonth, int gregorianDay)
        {
            Year = gregorianYear;
            Month = gregorianMonth;
            Day = gregorianDay;
            GregorianToEthiopian(ref Year, ref Month, ref Day);
        }