Here's what I want to do,
I have a compiled assembly of code, which I've used:
Now that I have all of my various files compiled at runtime, I want to throw the code into a parent class. So I have the functionality of being able to write functions/procedures in my files and not have to create a class for them.
I have a compiled assembly of code, which I've used:
Visual Basic:
myCodeCompiler = dynCompiler.CreateCompiler()
myCompilerResults = myCodeCompiler.CompileAssemblyFromFileBatch(myCompilerParameters, files)
Now that I have all of my various files compiled at runtime, I want to throw the code into a parent class. So I have the functionality of being able to write functions/procedures in my files and not have to create a class for them.