我有一个类库,其中定义了一些函数f1,f2,我希望将它们放在字典中,以便以后按名称调用。但是,即使我正在使用System.Reflection,反射Type.GetMethod似乎也没有在可移植的类库中定义。您可以建议解决方法吗?
这是我用于说明的简单代码
public class Class1
{
public delegate int myFunction(object o);
private Dictionary<string, myFunction> list = new Dictionary<string, myFunction>();
public Class1()
{
string[] n = { "f1", "f2" };
MethodInfo mInfo;
foreach (var i in n)
{
mInfo = typeof(Class1).GetMethod(i);
}
list.Add("f1", f1);
list.Add("f2", f2);
}
public int f1(object o)
{
System.Diagnostics.Debug.WriteLine("f1: parameter is {0} " ,o);
return 0;
}
public int f2(object o)
{
System.Diagnostics.Debug.WriteLine("f2: parameter is {0} ", o);
return 0;
}
}
我的初衷是将我所有的功能都放在字典列表中。我可以手动添加:
list.Add("f1", f1);
list.Add("f2", f2);
但是,当我声明带有函数名称的字符串数组时,使用GetMethod拾取函数,编译器生成错误“类型不包含GetMethod的定义...
请指教。
谢谢!
更新:编译错误
使用Singleton更新:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
using System.Text;
namespace ClassLibrary1
{
public sealed class Class1
{
public delegate int myFunction(object o);
public Dictionary<string, myFunction> list = new Dictionary<string, myFunction>();
private static readonly Class1 _instance = new Class1();
static Class1()
{
}
public Class1()
{
string[] n = { "f1", "f2" };
MethodInfo mInfo;
foreach (var i in n)
{
mInfo = typeof(Class1).GetTypeInfo().GetDeclaredMethod(i);
//NewExpression constrExpr = Expression.New(typeof(Class1).GetTypeInfo().DeclaredConstructors.Single(ci => ci.GetParameters().Length == 0));
ParameterExpression objExpr = Expression.Parameter(typeof(object));
Expression<myFunction> expr = Expression.Lambda<myFunction>(Expression.Call(null, mInfo, objExpr), objExpr);
//Expression<myFunction> expr = Expression.Lambda<myFunction>(Expression.Call(constrExpr, mInfo, objExpr), objExpr);
list.Add(i, expr.Compile());
}
list.Add("f11", f1);
list.Add("f21", f2);
}
public static Class1 Instance
{
get
{
return _instance;
}
}
public int f1(object o)
{
System.Diagnostics.Debug.WriteLine("f1: parameter is {0} ", o);
return 0;
}
public int f2(object o)
{
System.Diagnostics.Debug.WriteLine("f2: parameter is {0} ", o);
return 0;
}
}
}
最佳答案
首先,大多数PCL配置文件都使用TypeInfo
作为类型信息,请参见例如here和here。 TypeInfo
也带有一些稍微不同的方法。
所以,不用写typeof(Class1).GetMethod(i)
因此,您应该这样写:
typeof(Class1).GetTypeInfo().GetDeclaredMethod(i)
但是,即使使用上面的表达式获取
MethodInfo
,也不能(据我所知)立即将此对象转换为myFunction
委托。解决此问题的一种方法是使用expression trees。然后,您需要制定一个
Expression<myFunction>
对象,然后将其编译为myFunction
委托。我认为您可以执行以下操作:
Expression<myFunction> expr =
Expression.Lambda<myFunction>(
Expression.Call(
constrExpr,
typeof(Class1).GetTypeInfo().GetDeclaredMethod(i),
objExpr),
objExpr);
list.Add(i, expr.Compile());
其中
constrExpr
是用于使用默认构造函数创建Class1
实例的表达式NewExpression constrExpr =
Expression.New(
typeof(Class1).GetTypeInfo().DeclaredConstructors
.Single(ci => ci.GetParameters().Length == 0));
objExpr
是object o
参数的表示ParameterExpression objExpr = Expression.Parameter(typeof(object));
通过这些更改,您应该能够在字典中调用任意方法,如下所示:
int i = list["f1"]("hello");
int j = list["f2"](20.0);
关于c# - 类库中的反射GetMethod问题(便携式),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35466195/