1.类库提供的首字母大写
1
System.Globalization.CultureInfo cultureInfo = System.Threading.Thread.CurrentThread.CurrentCulture;
2
System.Globalization.TextInfo textInfo = cultureInfo.TextInfo;
3
string temp = "yes , you are right!";
4
temp = temp.ToLower();
5
temp = textInfo.ToTitleCase(temp);
2
3
4
5
2.显示英文日期,直接修改数据库
1
2
set language us_english
3
4
select convert(char(30),getdate())
5
select convert(char(30),getdate(),107)
6
7
SET LANGUAGE 简体中文
8
9
2
3
4
5
6
7
8
9
结果: