C#程序转换字符大小写

假设您的字符串是-

str = "AMIT";

要将上面的大写字符串转换为小写,请使用ToLower()方法-

Console.WriteLine("Converted to LowerCase : {0}", str.ToLower());

示例

以下是C#中用于转换字符大小写的代码。

using System;
using System.Collections.Generic;
using System.Text;
namespace Demo {
   class MyApplication {
      static void Main(string[] args) {
         string str;
         str = "AMIT";
         Console.WriteLine("UpperCase : {0}", str);
         //转换为小写
         Console.WriteLine("Converted to LowerCase : {0}", str.ToLower());
         Console.ReadLine();
      }
   }
}

输出结果

UpperCase : AMIT
Converted to LowerCase : amit