Text manipulation - Title Case
A nice way to convert text to title-case using the .NET framework.
Title Case - First Letter Of Every Word Is Upper
CultureInfo.CurrentCulture.TextInfo.ToTitleCase("some text"); //Returns "Some Text"
Note that you should ensure the input passed to the method is all in lower case, otherwise you will encounter scenarios where this would not work.