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

GetMonthName() public method

Gets the name of the month.
public GetMonthName ( ) : string
return string
        public string GetMonthName()
        {
            switch (Month)
            {
                case 1:
                    return "መስከረም";
                case 2:
                    return "ጥቅምት";
                case 3:
                    return "ህዳር";
                case 4:
                    return "ታህሳስ";
                case 5:
                    return "ጥር";
                case 6:
                    return "የካቲት";
                case 7:
                    return "መጋቢት";
                case 8:
                    return "ሚያዚያ";
                case 9:
                    return "ግንቦት";
                case 10:
                    return "ሰኔ";
                case 11:
                    return "ሐምሌ";
                case 12:
                    return "ነሃሴ";
                case 13:
                    return "ጳጉሜ";
            }
            return null;
        }

Same methods

EthiopianDate::GetMonthName ( int month ) : string