This may be an akward question but is there any built in function in .net for translating an integer to a describing text?
That is, if i have the value 1
i want to print it as the string one
. If the value is 22
, i want the string twenty-two
and so on, or do i have to build my own function/algorithm for this?
Yes, the most common is to use 0 to 9 as explaining text and ten and above displayed in numbers, but I still wonder, and I guess I can't find anything about it since it's not possible? VB or C# does not matter.