Skip to content

Instantly share code, notes, and snippets.

@leandrocustodio
Created June 14, 2013 18:43
Show Gist options
  • Save leandrocustodio/5784233 to your computer and use it in GitHub Desktop.
Save leandrocustodio/5784233 to your computer and use it in GitHub Desktop.
Capitalizar texto com C#
CultureInfo cultureInfo = Thread.CurrentThread.CurrentCulture;
TextInfo textInfo = cultureInfo.TextInfo;
string result = textInfo.ToTitleCase("mEu textO");
//o resultado será Meu Texto
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment