Below I will show what it takes to generate a dynamic method at run-time and persist it to an assembly on disk. The assembly may later, at any time, be loaded normally from disk or referenced from other code and executed any number of times. This post is a minimal example just to practically show the lay of the land of dynamic code generation. Background (Skip this section if you just want to quickly review my sample!) This post is also the result from feedback on my previous posts Dynamic Code Generation in...