Use the .Net CodeDOM to compile C# On the Fly
Get the complete article here
Wouldn't it be nice if you could extend an existing application's functionality without re-compiling the entire application? There is a solution! The .Net CodeDOM provides a way to do just that. The CodeDOM provides a way to create a source code object graph by defining source code elements. Once these source code elements are defined, the CodeDOM can be used to compile the objects.
Get the complete article here |