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

EthiopianToGregorian() public static method

Ethiopians to gregorian.
public static EthiopianToGregorian ( int &year, int &month, int &day ) : void
year int The year.
month int The month.
day int The day.
return void
        public static void EthiopianToGregorian(ref int year, ref int month, ref int day)
        {
            FixedToGregorian(EthiopianToFixed(year, month, day), ref year, ref month, ref day);
        }

Same methods

EthiopianDate::EthiopianToGregorian ( string ethiopianDateDDMMYYYY ) : System.DateTime
EthiopianDate::EthiopianToGregorian ( int hour ) : int