gpt4 book ai didi

c# - 是否可以将 Func 转换为 Func

转载 作者:行者123 更新时间:2023-11-30 20:03:27 29 4
gpt4 key购买 nike

首先,foo 是一个 Func 对象。有可能做类似的事情

Func<T2,T1,TResult> bar = ConvertFunction(foo);

从而将 Func 转换为 Func

最佳答案

是的,这是可能的:

Func<T2, T1, TResult> bar = (t2, t1) => foo(t1, t2);

这基本上创建了另一个具有切换参数的委托(delegate),它在内部简单地调用原始委托(delegate)。
如果您只有 Func<T1, T2, TResult>,这是执行这种“转换”的唯一方法而不是 Expression<Func<T1, T2, TResult>> .

关于c# - 是否可以将 Func<T1,T2,TResult> 转换为 Func<T2,T1,TResult>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14997252/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com