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