I did the following to upper case the first letter in each word but it\'s only working on the first word. Could someone explain why?
static void Main(string[] ar
You somehow need to tokenize your initial string. You're currently not even looking past the first character of the whole thing.