So how can I force developers developing class libraries with specific parameters for each methods that will be invoked in my application?
Force developer using same parameters and return for methods
I want to enable developers to develop plug-ins for my windows forms application. There is a part to upload a dll for this. Then my application automatically browse uploaded dll files and classes inside these libraries. Then it will invoke the specific methods inside classes.
Jaganathan BantheswaranPosted Oct 23, 2013, 3:48 AM
This is where you have to use OOP concept.
Define an interface with the plugin methods with the parameter you want. Then ask the developer to implement with plugin class which they are going to develop.
Is it what you want?