C# 如何让引用类型变成值类型的赋值:
例子:
class a 
{
  private string _str = "";
  public a(string str)
  {
    str = this._str;
  } 
}a x1 = new a("x1");
a x2 = new a("x2");x1 = x2;(我想要的是这赋值是 值类型的赋值,而非引用类型的。但是现在肯定是引用类型的。)