using System; namespace My.System { static class Test { public static void Main () { var a = new { X = 1 }; Console.WriteLine(a); } } }