C# 大小写转换

转换为大写:

string str = "abc";
str = str.ToUpper();

转换为小写:

string str = "ABC";
str = str.ToLower();

你可能感兴趣的