Top "Anonymous" questions

DO NOT USE!

Is there a way to concat C# anonymous types?

For example var hello = new { Hello = "Hello" }; var world = new { World = "World" }; var helloWorld = hello + world; Console.WriteLine(helloWorld.ToString()); //…

c# types anonymous