I have Microsoft.CSharp.CSharpCodeProvider CompileAssemblyFromSource working. Its definitely creating and returning what i need.
I know the compiled code ends up in the assembly, and cann ont be removed until the app domain is dispossed of.
How do you reuse the compiled called, without having to call the CompileAssemblyFromSource(myParams, myScript) everytime?
If i set myParams.OutputAssembly = 'MyAssembly"; I cannot seem to to instantiate an instance of it.
If the code is in memory, how can i check to see if it is there and how can i reload it without calling CompileAssemblyFromSource()?
Found a possible solution. At least working in my test app. When not using the OutputAssembly setting, .NET will create the assembly with a random name.
I got the name from the returned code object. objectReturned.GetType().Module.ScopeName.
Saving that name, so when i come back, if the script has not changed, i can just use the last compiled version.
Just remeber, everytime you compile, it will create a new entry in the assembly. Which can be seen in the AppDomain.CurrentDomain.GetAssemblies().