Sample code:
//include this using System.Globalization; //how to convert from uppercase string to titlecase string title = "THE TITLE STRING"; TextInfo ti = CultureInfo.CurrentCulture.TextInfo; title = ti.ToTitleCase(title.ToLower()); //result : "The Title String"Additional Reading at :
No comments:
Post a Comment