You really need to provide more details regarding what you mean. Do you mean "words" or "strings"?
For example, if you want to convert a number into a string, then you'd only need something like this:
int i = 123;
string text = i.ToString();
In fact, you can even do this:
123.ToString();
and even
123.5.ToString(); // this always trips me out
However, if you need to convert 123 into one hundred twenty three, then you need to do more parsing. You'd have to break the number down into its parts, like hundreds, tenths, and so on.
You could start by getting the string length (for ints) to figure out where to start the breakdown. For example, 123 has 3 digits, so let N = 3 and i = 1. Next you would start by dividing 123 by 10(N-i), or 100. This gives you 1. Now you know that the word will start with "one hundred". Then increment i, subtract that number (100) and divide by 10(N-i), or 10 -- this gives you 2. Do this until N == i.
Hope this helps. You should really edit your question.