C# 字符串首字母大写其余小写
CultureInfo cultureInfo = System.Threading.Thread.CurrentThread.CurrentCulture;
TextInfo text = cultureInfo.TextInfo;
string toLower = text.ToLower("sDEFW");
string result = text.ToTitleCase(toLower);