Argentini.Halide.H3Temporal.GetMonthName C# (CSharp) Method

GetMonthName() public static method

Get the month name by its number.
public static GetMonthName ( String monthNumber, System.Boolean returnAbbreviation ) : String
monthNumber String Month number for which a name is requested (1 to 12).
returnAbbreviation System.Boolean Set to "true" to return month names abbreviation (e.g. Dec).
return String
        public static String GetMonthName(String monthNumber, Boolean returnAbbreviation)
        {
            return GetMonthName(Convert.ToInt32(monthNumber), returnAbbreviation);
        }

Same methods

H3Temporal::GetMonthName ( Int32 monthNumber, System.Boolean returnAbbreviation ) : String