——————————————————————————————————————————————————————————
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string str0 = "ABCDefg";
string str1 = str0.ToLower(); //将字符串变成小写,只是创建了一个副本,并没有对原来的str0进行改变
string str2 = str0.ToUpper(); //将字符串变成大写
Console.WriteLine("str0:{0}\nstr1:{1}\nstr2:{2}", str0, str1,str2);
Console.ReadKey();
}
}
}
——————————————————————————————————————————————————————————
感恩帮助过我的人。博客的精髓在技术部分,更在镇场一诗。
我是一个新手,代码还有许多不完善的地方,请您看代码的时候多多思考。C#是一个优秀的语言,VS是一个优秀的编译软件,二者值得学习。如果您有一些不会的知识,咱们可以相互讨论。
如果您认为代码可以有改进的地方,有错误的地方,请留下评论,我会处理的。
注:如果我的博文无意中侵犯了您的权益,请告知。看到您的告知后,我将及时作出处理。