using System;
using System.Data.SqlTypes;
public class Program
{
public static void Main()
SqlXml t = new SqlXml();
Console.WriteLine(t?.Value);
var s = "asdfasdf";
Console.WriteLine(s?.ToString());
}