Cats.Helpers.EthiopianDate.GetEthiopianDay C# (CSharp) Méthode

GetEthiopianDay() private static méthode

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