.Net Tips – String.ToTitleCase() extension methods
As you most likely know already, there are ToLower() and ToUpper() methods on the String class in C#, but a method to convert a string to ‘Title Case’ is sadly missing. Support for this useful conversion exists in the TextInfo class which has a ToTitleCase method, but you can’t instantiate a new instance of the …
.Net Tips – String.ToTitleCase() extension methods Read More »