Last active
July 6, 2021 10:38
-
-
Save Mahno74/c5b6d5ba14960b57ef263dd6dc8b38c1 to your computer and use it in GitHub Desktop.
Делаем первую букву строки заглавной
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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