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
Use string.Split(' ') to break up the sentence into a bunch of words than use the code you have to capitalize each word... then put it all back together.