You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/Invokation/Invoker.cs

10 lines
364 B

6 years ago
namespace ZeroLevel.Services.Invokation
{
/// <summary>
/// Delegate describing the method call
6 years ago
/// </summary>
/// <param name="target">The target on which the method is called</param>
/// <param name="args">Method Arguments</param>
/// <returns>Result</returns>
6 years ago
public delegate object Invoker(object target, params object[] args);
}

Powered by TurnKey Linux.