What are the different ways to load a assembly/dll from a executing caller. I’m thinking in the context of licensing, if the dll is licensed, then load it. I’ve looked at MEF, seems a bit granular, heavy. Is the only other dynamic loading.
Share
It sounds like you are looking for the Assembly.Load method. You load the assembly from a file (or URI, etc), and then access it via reflection. Sound right?