About
Digital Colony is the technical web site for Michael Allen Smith of Seattle.
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()).;
