我正在尝试对函数和动作使用Convert方法,因此我可以避免编写接受Func类型委托的重复方法。转换方法来自Convert Action<T> to Action<object>
public class Program
{
static void Main(string[] args)
{
var program = new Program();
var mi = program.GetType().GetMethod("Function", BindingFlags.Instance | BindingFlags.Public);
// Can be any version of Func
var funcType = typeof(Func<int, int>);
// Create action delegate somehow instead
var del = mi.CreateDelegate(funcType, null);
// Or dynamically convert the Func to a corresponding Action type (in this case Action<int>)
}
// Or find a way to pass it in as a parameter here
public Action<object> Convert<T>(Action<T> action)
{
return o => action((T)o);
}
public int Function(int five)
{
return five;
}
}
答案 0 :(得分:3)
我认为你正在寻找这样的东西:
public static Action<T1> IgnoreResult<T1,T2>(Func<T1,T2> func)
{
return x => func(x);
}
但适用于Func<T1,T2....>
我认为这样可行:
public static Action<TR> IgnoreResult<TR>(Delegate f)
{
return x => f.DynamicInvoke(x);
}
使用方法:
var action = IgnoreResult<int>(new Func<int,int>(program.Function));
action(5);
如果没有复制并粘贴Action<T1...>
和Func<T1,T2...>
的所有变体的第一个示例,您将无法推断参数和返回类型。