[]
Returns the culture-specific full name of the specified month based on the current UI culture.
public static string GetMonthName(int month)
Type | Name | Description |
---|---|---|
int | month | The month number. |
Type | Description |
---|---|
string | The culture-specific month name. |
Returns the culture-specific full name of the specified month based on the specified culture.
public static string GetMonthName(int month, CultureInfo culture)
Type | Name | Description |
---|---|---|
int | month | The month number. |
CultureInfo | culture | The CultureInfo object. |
Type | Description |
---|---|
string | The culture-specific month name. |