无法在Windows服务中使用Lambda表达式?
我已经为.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您尝试使用 LINQ 扩展方法但不导入 System.Linq,它将无法编译。尝试:
If you try to use the LINQ extension methods but you don't import System.Linq it won't compile. Try:
检查你的参考资料。听起来您缺少所需的类型。如果您发布整个编译器错误以及一些示例代码,我们可能会提供更多见解。
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.