using System;
public class Program
{
public static void Main()
Microsoft.Extensions.Primitives.StringValues x = new string[] { "hello", "world" };
System.Console.WriteLine(x.ToString());
System.Console.WriteLine(string.Join(" ", x));
System.Console.WriteLine((string) x);
}