Tuesday, July 29, 2014

Change first letter of word to Upper case using C#

Change the text in CameCase .
Change the text to TitleCase


var testText="hello test case";
var outText= CultureInfo.CurrentCulture.TextInfo.ToTitleCase(testText.ToLower());

Happy Coding

Cheers !!!
Binaya

No comments:

Post a Comment