RhinoMocks - 通过操作作为参数

发布于 2024-09-14 08:43:15 字数 482 浏览 3 评论 0原文

在RhinoMocks中,有一个Stub扩展方法,它采用Action。由于某种原因, this:

CurrentInvoice.Stub(i => i.TaxYear).Return(1);

效果很好,但是 this:

CurrentInvoice.Stub(new Action<Invoice>(i => i.TaxYear)).Return(1);

会产生编译器错误: 只有赋值、调用、递增、递减和新对象表达式可以用作语句

该方法的智能感知明确表示它需要 Action,所以我无法理解为什么第一个有效,但第二个不行。

这样做的主要相关性是,我希望能够将其中一些配置 lambda 作为参数传递给方法,并且我遇到了同样的问题。

谢谢

In RhinoMocks, there's Stub extension method, that takes Action<T>. For some reason this:

CurrentInvoice.Stub(i => i.TaxYear).Return(1);

works great, but this:

CurrentInvoice.Stub(new Action<Invoice>(i => i.TaxYear)).Return(1);

produces the compiler error:
Only assignment, call, increment, decrement, and new object expressions can be used as a statement

The intellisense for this method explicitly says that it expects Action<Invoice>, so I can't understand why the first works, but not the second.

The main relevance of this is that I'd like to be able to pass some of these configuration lambdas as parameters to a method, and I run into this same issue.

Thanks

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

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

发布评论

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

评论(1

趴在窗边数星星i 2024-09-21 08:43:17

您确定您没有意外使用 Stub 的重载,该重载在第一行中采用 Func 吗?我不明白为什么第一个电话会起作用。

您有 API 文档的链接吗?

Are you sure you're not accidentally using an overload for Stub which takes a Func<T, TResult> in the first line? I can't see why the first call would work otherwise.

Do you have a link to API documentation?

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