Tag Archives: string

Capitalize the First Letter of a Word in C#

Here is how you capitalize the first letter of a word in C#. string labelName; labelName = System.Globalization.TextInfo.ToTitleCase(labelName.ToLower()).;

Posted in C# | Tagged , , | 1 Comment