using System;
public class Program
{
public static void Main()
dynamic x;
x = new { Test1 = "Test1", Test2 = 23 };
Console.WriteLine(x);
}