An Anonymous Type Assigned to a Variable Declared with the var Keyword
using System; public class MainClass { public static void Main() {
var unnamedTypeVar = new { firstArg = 1, secondArg = "Joe" };
Console.WriteLine(unnamedTypeVar.firstArg + ". " + unnamedTypeVar.secondArg);