Another simple one. This makes sure that the first letter in a text is uppercase

public static string UpperFirstLetter(string str) {
    return str.Substring(0, 1).ToUpper() + str.Substring(1, str.Length-1);
}