In C# 3.0 you can create anonymous class with the following syntax var o = new { Id = 1, Name = "Foo" }; Is there a way to...
  • May 5, 2022
  • 0 Comments
Is it possible to have an anonymous type implement an interface? I’ve got a piece of code that I would like to work, but don’t know how to do...
  • May 3, 2022
  • 0 Comments