I\'m building an application with WPF and C#, basically I want to allow anyone to create a dll and put it into a folder (similar to plugins). The application will take all t
Have a look at MEF. it should provide exactly what you are looking for.
Using reflection is also an option, but MEF will be a better choice if you ask me.