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

GetEthiopianDay() private static method

Just get the day in the Ethiopian Calandar.
private static GetEthiopianDay ( int gregorianYear, int gregorianMonth, int gregorianDay ) : int
gregorianYear int
gregorianMonth int
gregorianDay int
return int
        private static int GetEthiopianDay(int gregorianYear, int gregorianMonth, int gregorianDay)
        {
            int ethDay = gregorianDay;
            GregorianToEthiopian(ref gregorianYear, ref gregorianMonth, ref ethDay);
            return ethDay;
        }