what's the recoomended approach in C# when one wants to implement a simple plugin approach?
So basically I have a processing loop that I want different behavior to occrur depending on what the user selected. Let's say there are two places in the processing code for which logic (code)has to be different depending upon user input. For example the user may select either web based or file based upload. So I really kind of want to pass the two specific methods into the processing loop to represent
any suggestions re who to implement things for this here?
Thanks
You could use delegates, or partial methods to allow hooking in your code, but these mean that the assembly has to be recompiled.