为什么“lambda 表达式的计算在调试器中无效”?

发布于 2024-08-15 02:51:03 字数 266 浏览 1 评论 0原文

我有一个看似无害的代码片段,我将其输入到 Visual Studio 2008 立即窗口中。

? results.Join(lstDocs, Function(docID) docID)
Evaluation of lambda expressions is not valid in the debugger.

正如消息所述,不可能在调试器中调用 lambda 表达式。
为什么不允许?

I have a seemingly innocent code snippet, which I typed into Visual Studio 2008 Immediate Window.

? results.Join(lstDocs, Function(docID) docID)
Evaluation of lambda expressions is not valid in the debugger.

As the message says, it's not possible to call a lambda expression in the debugger.

Why is it not allowed?

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

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

发布评论

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

评论(2

一百个冬季 2024-08-22 02:51:03

http://msdn.microsoft.com/en-us/library/bb763138。 aspx

这在设计上是不可能的。 Lambda 表达式需要在立即窗口中动态生成代码。调试器和/或评估器无法处理此问题。如果你真的想知道为什么,请询问 VS 的开发人员。也许这是某个即将推出的功能。 Lambda 表达式是一个相当新的功能

http://msdn.microsoft.com/en-us/library/bb763138.aspx

It's impossible by design. Lambda expressions need to generate code on the fly in the immediate window. The debugger and/or evaluater cannot handle this. If you really want to know why, ask the developers of VS. Maybe this is an upcoming feature somewhen. Lambda expressions is a bearly new feature

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