using System;
public class Program
{
public static void Main()
var a = "test";
string b = new String(new char[] {'t', 'e', 's', 't'});
Console.WriteLine(a == b);
}