NToCMonth Function | |
Convert the number that identifies a month into the name of the month.
Namespace:
XSharp.Core
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax FUNCTION NToCMonth(
dwMonthNum AS DWORD
) AS STRING
public static string NToCMonth(
uint dwMonthNum
)
Request Example
View SourceParameters
- dwMonthNum
- Type: DWord
A number from 1 to 12.
Return Value
Type:
String
The name of the month that corresponds to
dwMonthNum, where January is 1, February is 2, and so on through December, which is 12.
Remarks
This function is nation-dependent.
Examples
This example shows how NToCMonth() works in English:
1? NToCMonth(1)
2? NToCMonth(2)
3? NToCMonth(12)
4? NToCMonth(14)
See Also