[]
Returns the culture-specific full name of the specified month based on the current UI culture.
public static string GetMonthName(int month)
Public Shared Function GetMonthName(month As Integer) As String
| 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)
Public Shared Function GetMonthName(month As Integer, culture As CultureInfo) As String
| Type | Name | Description |
|---|---|---|
| int | month | The month number. |
| CultureInfo | culture | The CultureInfo object. |
| Type | Description |
|---|---|
| string | The culture-specific month name. |