Print value of number (int) spelled out
- by Ricardo Villamil
Hi, is there an out-of-box way to spell out an int in C#? For example if I have:
int a = 53;
I want to print:
"fifty three"
not
"53"
If not, does anybody have any examples on how to accomplis this?
Thanks!