事先定义变量string s;
初始化时 s=new string('=',1);
求教s=new string('=',1);是什么意思?
就是 s="=";
这个方法参数是new string(char c, int count),初始化一个由count个字符c组成的字符串。s = new string('=',2)就是s="==";
去下面这个网址看看
http://zhidao.baidu.com/question/538467560.html
http://msdn.microsoft.com/zh-cn/library/vstudio/xsa4321w.aspx