public static void Main()
var texto = "stack exchange";
var upper = texto.FirstCharToUpper();
Console.WriteLine(upper);
public static class StringExtends
public static string FirstCharToUpper(this string input)
if (String.IsNullOrEmpty(input))
throw new ArgumentException("Insira uma palavra diferente de nula ou vazia");
return input.Length > 1 ? char.ToUpper(input[0]) + input.Substring(1) : input.ToUpper();