在C#中,可以使用ToLower()方法將字符串轉換為小寫,使用ToUpper()方法將字符串轉換為大寫。示例如下:
string str = "Hello, World!";
string upperStr = str.ToUpper();
string lowerStr = str.ToLower();
Console.WriteLine("原始字符串:" + str);
Console.WriteLine("轉換為大寫:" + upperStr);
Console.WriteLine("轉換為小寫:" + lowerStr);
輸出結果為:
原始字符串:Hello, World!
轉換為大寫:HELLO, WORLD!
轉換為小寫:hello, world!