48 lines
1.2 KiB
C#
48 lines
1.2 KiB
C#
using System;
|
|
using System.Reflection;
|
|
|
|
namespace ET
|
|
{
|
|
public class MonoStaticMethod : IStaticMethod
|
|
{
|
|
private readonly MethodInfo methodInfo;
|
|
|
|
private readonly object[] param;
|
|
|
|
public MonoStaticMethod(Type type, string methodName)
|
|
{
|
|
this.methodInfo = type.GetMethod(methodName);
|
|
this.param = new object[this.methodInfo.GetParameters().Length];
|
|
}
|
|
|
|
public override void Run()
|
|
{
|
|
this.methodInfo.Invoke(null, param);
|
|
}
|
|
|
|
public override void Run(object a)
|
|
{
|
|
this.param[0] = a;
|
|
this.methodInfo.Invoke(null, param);
|
|
}
|
|
|
|
public override void Run(object a, object b)
|
|
{
|
|
this.param[0] = a;
|
|
this.param[1] = b;
|
|
this.methodInfo.Invoke(null, param);
|
|
}
|
|
|
|
public override void Run(object a, object b, object c)
|
|
{
|
|
this.param[0] = a;
|
|
this.param[1] = b;
|
|
this.param[2] = c;
|
|
this.methodInfo.Invoke(null, param);
|
|
}
|
|
public override string ToString()
|
|
{
|
|
return methodInfo.Name + " "+methodInfo.GetParameters().Length;
|
|
}
|
|
}
|
|
} |