What is the Difference Between ''new object()'' and ''new {}'' in C#?
Note that if you declared it var a = new { }; and var o = new object();, then there is one difference, former is assignable only to another similar anonymous object, while latter being object, it
View Details