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
Since it's anonymous, you cannot name it. If you need to know the name of a type, then you must really create a class.