using System;
public class Program
{
public static void Main()
string a = "test";
string b = a;
Console.WriteLine(object.ReferenceEquals(a,b));
}