Hi
Is it possible to instantiate a object at runtime if I only have the DLL name and the class name, without adding a reference to your project ?
eg. DLL name : library.dll and class name : Company.Project.Classname
The class implements a interface, so once I instantiate the class, I will then cast it to the interface.
EDITED :
I dont have the absolute path of the dll, so assemlby.LoadFile ect. wont work. The dll might be in the APP root, system32 or even loaded in the GAC. I only have the dll name.