如何构建表达式>没有输入参数?

发布于 2024-11-03 11:26:38 字数 417 浏览 0 评论 0 原文


我使用Expression.Call动态构建MethodCallExpression。该调用是针对“First”方法的。 然后,我需要将其包装为 Expression> (x 和 y 是类型,与问题无关)。我尝试使用 Expression.Lambda> 来执行此操作,但在传递时出现为 lambda 声明提供的参数数量不正确 异常
ParameterExpression[] 输入参数中的新 ParameterExpression[]{}(即空数组)。
当 Lambda 采用零参数时,应向 Expression.Lambda 提供什么?

I use Expression.Call to build MethodCallExpression dynamically. The call is for "First" method.
Then, I need to wrap it to Expression<Func<x,y>> (x and y are types, and it irrelevant to the question). I'm trying to do it with Expression.Lambda<Func<x,y>>, but get Incorrect number of parameters supplied for lambda declaration exception when passing
new ParameterExpression[]{} (i.e. empty array) in the ParameterExpression[] input parameter.
what should be provided to Expression.Lambda when the Lambda takes ZERO parameters?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浴红衣 2024-11-10 11:26:38

Action 是对应的委托为不接受任何参数的 voidFunc 表示该方法接受 x 并返回 y。所有 Func 委托都返回值,所有 Action 委托都是 void

Action is the delegate that corresponds to a void that accepts no parameters. Func<x, y> says that the method accepts an x and returns a y. All the Func delegates return values, and all the Action delegates are void.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文