无法在Windows服务中使用Lambda表达式?

发布于 2024-08-10 01:36:37 字数 173 浏览 2 评论 0原文

我已经为.net 3.5 开发了一个服务器软件,我试图将其转换为Windows 服务应用程序。所以我创建了一个新的 Windows 服务项目并添加了我的所有类。但我无法编译它,因为它不理解我使用的 lambda 表达式。我已经检查过,以便导入所有参考文献。但似乎无法更改 Windows 服务项目中的目标框架,我怀疑这就是问题所在。

I've developed a server software for .net 3.5 which I tried to convert to a windows service application. So I created a new Windows service project and added all my classes. But I can't compile it because it doesn't understand the lambda expressions i've used. I've checked so that all references are imported. But it seems like it isn't possible to change the target framework in a windows service project and I suspect that it's the problem.

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

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

发布评论

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

评论(2

七月上 2024-08-17 01:36:37

如果您尝试使用 LINQ 扩展方法但不导入 System.Linq,它将无法编译。尝试:

using System.Linq;

If you try to use the LINQ extension methods but you don't import System.Linq it won't compile. Try:

using System.Linq;
一绘本一梦想 2024-08-17 01:36:37

检查你的参考资料。听起来您缺少所需的类型。如果您发布整个编译器错误以及一些示例代码,我们可能会提供更多见解。

Check your references. Sounds like you are missing a required type. If you post the entire compiler error and maybe some sample code we could probably provide more insight.

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