111,097
社区成员




private void ExcuteFunc(int a)
{
object o = new object();
Type t = o.GetType();
MethodInfo mi = t.GetMethod("Test" + a.ToString());
if (mi != null) mi.Invoke(o, new object[0]);
}