I\'m trying to make a design for some sort of IExecutable interface. I will not get into details, but the point is that I have several Actions that need to be executed from a ba
what about something simple:
public class ActionExecuter { private MulticastDelegate del; public ActionExecuter(MulticastDelegate del) { this.del = del; } public object Execute(params object[] p) { return del.DynamicInvoke(p); } }