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

GetMonthNameEN() public method

public GetMonthNameEN ( ) : string
return string
        public string GetMonthNameEN()
        {
            switch (Month)
            {
                case 1:
                    return "Meskerem";
                case 2:
                    return "Tikimt";
                case 3:
                    return "Hidar";
                case 4:
                    return "Tahsas";
                case 5:
                    return "Tirr";
                case 6:
                    return "Yekatit";
                case 7:
                    return "Megabit";
                case 8:
                    return "Miazia";
                case 9:
                    return "Ginbot";
                case 10:
                    return "Senie";
                case 11:
                    return "Hamlie";
                case 12:
                    return "Nehasie";
                case 13:
                    return "Pagume";
            }
            return null;
        }