We all know that when we create an anonymous class like this:
var Employee = new { ID = 5, Name= \"Prashant\" };
...at run time it will be of t
Make it a regular class with a name?
public class Employee { public int ID; public string Name; } var Employee = new Employee { ID = 5, Name= "Prashant" };