作一个英文字母大小写转换!
用c#作一个英文字母的大小转换。。。。用到char
using System;
namespace Text
{
public class Demo
{
public static void Main()
{
try
{
Console.Write("请输入英文字母:");
string words = Console.ReadLine();
Console.Write("大写:{0}", words.ToUpper());
Console.WriteLine();
Console.Write("小写:{0}", words.ToLower());
}
catch(Exception)
{
Console.WriteLine("请输入英文字母!!!");
}
}
}
}