How to make a first letter capital in C#

后端 未结 12 1189
攒了一身酷
攒了一身酷 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-05 23:58

    text = new String(
        new [] { char.ToUpper(text.First()) }
        .Concat(text.Skip(1))
        .ToArray()
    );
    

提交回复
热议问题