public static string ToUpperFirstLetter(string source) { if (string.IsNullOrEmpty(source)) return string.Empty; char[] letters = source.ToCharArray(); letters[0] = char.ToUpper(letters[0]); return new string(letters); }
Login to post response