An Anonymous Type Assigned to a Variable Declared with the var Keyword

image_pdfimage_print
   
 


using System;
public class MainClass {
    public static void Main() {
        var unnamedTypeVar = new { firstArg = 1, secondArg = "Joe" };
        Console.WriteLine(unnamedTypeVar.firstArg + ". " + unnamedTypeVar.secondArg);

    }
}

    


This entry was posted in LINQ. Bookmark the permalink.