namespace ZeroLevel.Services.Invokation { /// /// Delegate describing the method call /// /// The target on which the method is called /// Method Arguments /// Result public delegate object Invoker(object target, params object[] args); }