options for loading dll at runtime

Hi guys

What i need to do is to update an assembly at runtime. It seems like there are different approaches for doing this. My assembly contains one class with one method and no parameters and it will always be like this. I thought about using System.Runtime.InteropServices; but I’m having some problems getting the method name/entrypoint. Also, I’m not sure if this should be in the plugins folder or in the Library\ScriptAssemblies?

Can someone give me some guidelines, please
Thanks

InteropServices is to talk to native code.

For assemblies you would need reflection.

I was starting to suspect this whe nI only saw google results for c++ and c when I searched for interpServices. I just didnt realise it would be for that only.

Thanks dreamora