show/hide this revision's text 3 Only question that uses this tag.
show/hide this revision's text 2 Added tags
show/hide this revision's text 1

C# Convert Integers into Written Numbers

Is there an efficient method of converting an integer into the written numbers for example:

String Written = IntegerToWritten(21);

would return "Twenty One"

Is there any way of doing this that doesn't involve a massive lookup table?