EAPConvertNumToWords Method |
Convert a number into its corresponding words (e.g. 1234 to "one thousand, two hundred and thirty-four" in English).
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static string NumToWords(
IAppContext cxt,
int num,
NumWordOpts options
)
Public Shared Function NumToWords (
cxt As IAppContext,
num As Integer,
options As NumWordOpts
) As String
Parameters
- cxt
- Type: NetQuarryIAppContext
The application context. - num
- Type: SystemInt32
The number to convert. - options
- Type: NetQuarryNumWordOpts
The conversion options to use.
Return Value
Type:
StringThe number converted to a string.
See Also