mirror of https://github.com/ogoun/Zero.git
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.
10 lines
364 B
10 lines
364 B
namespace ZeroLevel.Services.Invokation
|
|
{
|
|
/// <summary>
|
|
/// Delegate describing the method call
|
|
/// </summary>
|
|
/// <param name="target">The target on which the method is called</param>
|
|
/// <param name="args">Method Arguments</param>
|
|
/// <returns>Result</returns>
|
|
public delegate object Invoker(object target, params object[] args);
|
|
} |