C# char类型字符转换大小写的实现代码
程序员文章站
2024-02-15 14:49:46
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);
上一篇: C#使用非托管代码直接修改字符串的方法