Reflection.Emit vs CodeDOM
I think the key points about CodeDOM and Reflection.Emit are following: CodeDom generates C# source code and is usually used when generating code to be included as part of a solution and compiled in the IDE (for example, LINQ to SQL classes, WSDL, XSD all work this way). In this scenario you can also use … Read more