将字符串转成只有首字母是大写

string a="ABCDEFG"

string b=System.Threading.Thread.CurrentThread.CurrentCulture.TextInfo.ToTitleCase(a.ToLower());

结果b等于"Abcdefg"

原文地址:https://www.cnblogs.com/huangjing/p/6043280.html