I have some dlls in my app folder. Each one contains 3 methods: methodA methodB methodC; of course the methods from one dll do stuff in different way that the others.
Since I want to be able to add new dlls and use it without rebuild the app, I would like to store the dlls name in a db table, when app start I check if dlls listed in db exist, and show in in the program that this feature are available; then when the program need a specific one, I would load the selected dll(by the string result got from db query), and execute the methods.
Can be done in vb.net?