C# char类型字符转换大小写的实现代码
程序员文章站
2023-12-20 13:16:10
c# char类型有自带的大小写转换方法:toupper和tolowerchar str1 = 'a';char str2 = 'a';char.toupper(str1)...
c# char类型有自带的大小写转换方法:toupper和tolower
char str1 = 'a';
char str2 = 'a';
char.toupper(str1);
char.tolower(str2);