An Anonymous Type Assigned to a Variable Declared with the var Keyword : var : LINQ C# Source Code


Custom Search

C# Source Code » LINQ » var »

 

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);

    }
}

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo LINQ
» var