string是引用类型的疑问
string s = "hello";
string s1;
s1 = s;
Console.WriteLine("s={0}",s1);
s1 = " world";
Console.WriteLine("s={0}", s);
Console.ReadLine();
输出:
s=hello
s=hello
如果string是引用类型的话,为什么第二个s输出的是hello而不是world