How to make a first letter capital in C#

后端 未结 12 1200
攒了一身酷
攒了一身酷 2020-12-05 23:52

How can the first letter in a text be set to capital?

Example:

it is a text.  = It is a text.
12条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-06 00:15

    I use this variant:

     private string FirstLetterCapital(string str)
            {
                return Char.ToUpper(str[0]) + str.Remove(0, 1);            
            }
    

提交回复
热议问题