Skip to content

Instantly share code, notes, and snippets.

@Mahno74
Last active July 6, 2021 10:38
Show Gist options
  • Save Mahno74/c5b6d5ba14960b57ef263dd6dc8b38c1 to your computer and use it in GitHub Desktop.
Save Mahno74/c5b6d5ba14960b57ef263dd6dc8b38c1 to your computer and use it in GitHub Desktop.
Делаем первую букву строки заглавной
string newDeal = inputTextBox.Text;
newDeal = newDeal.Substring(0, 1).ToUpper() + (newDeal.Length > 1 ? newDeal.Substring(1) : ""); //делаем первую букву заглавной
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment