欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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);