c#大小写字母转换
时间: 2023-12-05 10:40:14 浏览: 135
以下是C#中大小写字母转换的方法:
```csharp
string str = "Hello World";
string upperStr = str.ToUpper(); // 转换为大写字母
string lowerStr = str.ToLower(); // 转换为小写字母
Console.WriteLine(upperStr); // 输出:HELLO WORLD
Console.WriteLine(lowerStr); // 输出:hello world
```
阅读全文